Class CoAuthUpdates (Word VBA)
A collection of CoAuthUpdate objects that represent the updates that were merged into the document at the last explicit save. To use a CoAuthUpdates class variable it first needs to be instantiated, for example
Dim caus as CoAuthUpdates
Set caus = ActiveDocument.Range.Updates
Count
Returns the number of items in the CoAuthUpdates collection.
MsgBox "The active document contains " & _
ActiveDocument.CoAuthoring.Updates.Count & " update(s)."
Item
Returns an individual CoAuthUpdates object in a collection.
Item (Index)
Index: The individual object to be returned.
Dim cau As CoAuthUpdate
Set cau = ActiveDocument.Range.Updates(Index:=1)