Class CoAuthUpdate (Word VBA)

The class CoAuthUpdate represents a range of text that has been updated by a co author. To use a CoAuthUpdate class variable it first needs to be instantiated, for example


Dim cau as CoAuthUpdate
Set cau = ActiveDocument.Range.Updates(Index:=1)

For Each

Here is an example of processing the CoAuthUpdate items in a collection.


Dim cauUpdate As CoAuthUpdate
For Each cauUpdate In ActiveDocument.Range.Updates
	
Next cauUpdate

Range

Returns a Range object that represents the portion of a document that is contained in the specified object.


Dim rng As Range 
 
Set rng = ActiveDocument.CoAuthoring.Updates(1).Range