Compartir a través de


View.ShowRevisionsAndComments Property

Word Developer Reference

True for Microsoft Word to display revisions and comments that were made to a document with Track Changes enabled. Read/write Boolean.

Syntax

expression.ShowRevisionsAndComments

expression   An expression that returns a View object.

Example

This example hides the revisions and comments in a document. This example assumes that the document in the active window contains revisions made by one or more reviewers.

Visual Basic for Applications
  Sub ShowRevsComments()
    ActiveWindow.View.ShowRevisionsAndComments = False
End Sub

See Also