Conflict.Type Property (Word)
Returns the WdRevisionType for the Conflict object. Read-only.
Version Information
Version Added: Word 2010
Syntax
expression .Type
expression An expression that returns a Conflict object.
Example
The following code example gets the type of each conflict in the active document.
Dim con as Conflict
For Each con in ActiveDocument.CoAuthoring.Conflicts
MsgBox con.Type
Next con