CoAuthoring.Conflicts Property (Word)
Returns a Conflicts collection that represents all the conflicts in a document. Read-only.
Version Information
Version Added: Word 2010
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