Reviewer object (Word)

Represents a single reviewer of a document in which changes have been tracked. The Reviewer object is a member of the Reviewers collection.

Remarks

Use Reviewers (index), where index is the name or number of the reviewer, to return a Reviewer object. Use the Visible property to display or hide individual reviewers in a document. The following code example hides the reviewer named "Jeff Smith" and displays the reviewer named "Judy Lew." This assumes that "Jeff Smith" and "Judy Lew" are members of the Reviewers collection. If they are not, you will receive an error.

Sub ShowHide() 
 With ActiveWindow.View 
 .Reviewers("Jeff Smith").Visible = False 
 .Reviewers("Judy Lew").Visible = True 
 End With 
End Sub

See also

Word Object Model Reference

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.