TrackRevisions Property

Applies To

Document object.

Description

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

See Also

PrintRevisions property, ShowRevisions 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