ShowRevisions Property
Applies To
Document object.
Description
True if tracked changes in the specified document are shown on the screen. Read/write Boolean.
See Also
PrintRevisions property, TrackRevisions property.
Example
This example sets the active document so that it tracks changes and makes them visible on the screen.
With ActiveDocument
.TrackRevisions = True
.ShowRevisions = True
End With