Document.ShowRevisions Property (Word)

True if tracked changes in the specified document are shown on the screen. Read/write Boolean.

Syntax

expression .ShowRevisions

expression A variable that represents a Document object.

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

See Also

Concepts

Document Object Members

Document Object