Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 861 Bytes

Word.Conflict.Type.md

File metadata and controls

45 lines (27 loc) · 861 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Conflict.Type property (Word)
vbawd10.chm78708740
vbawd10.chm78708740
Word.Conflict.Type
d2e5ad43-4b4b-8ce2-3aeb-453012759d9a
06/08/2017
medium

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

[!includeSupport and feedback]