Document.ShowRevisions Property

Word Developer Reference

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.

Visual Basic for Applications
  With ActiveDocument
    .TrackRevisions = True
    .ShowRevisions = True
End With

See Also