Reviewers Collection

Microsoft Word Visual Basic

Reviewers Collection

View Reviewers
Reviewer

A collection of Reviewer objects that represents the reviewers of one or more documents. The Reviewers collection contains the names of all reviewers who have reviewed documents opened or edited on a machine.

Using the Reviewers collection

Use Reviewers(index), where index is the name or index number of the reviewer, to return a single reviewer in the Reviewers collection. This example hides revisions made by the first reviewer in the Reviewers collection.

Sub HideAuthorRevisions(blnRev As Boolean)
    ActiveWindow.View.Reviewers(Index:=1) _
        .Visible = False
End Sub