CoAuthoring.PendingUpdates Property (Word)
Returns true if the document has pending updates that have not been accepted. Read-only.
Version Information
Version Added: Word 2010
Syntax
expression .PendingUpdates
expression An expression that returns a CoAuthoring object.
Example
The following code example displays a message that indicates whether content updates are pending for the active document.
If ActiveDocument.CoAuthoring.PendingUpdates Then
MsgBox "There are content updates pending."
Else: MsgBox "There are no pending updates."
End If