CoAuthoring.Conflicts property (Word)
Returns a Conflicts collection that represents all the conflicts in a document. Read-only.
Syntax
expression. Conflicts
expression An expression that returns a 'CoAuthoring' object.
Example
The following code example gets the type of each conflict in the active document. The Type property uses the WdRevisionType enumeration to specify the conflict type.
Dim conf As Conflict
For Each conf In ActiveDocument.CoAuthoring.Conflicts
MsgBox conf.Type
Next conf
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.