Conflict.Type property (Word)

Returns the WdRevisionTypefor the Conflict object. Read-only.

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

See also

Conflict Object

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.