Class Reviewer (Word VBA)

The class Reviewer represents a single reviewer of a document in which changes have been tracked. The Reviewer object is a member of the Reviewers collection. To use a Reviewer class variable it first needs to be instantiated, for example


Dim rvw as Reviewer
Set rvw = ActiveWindow.View.RevisionsFilter.Reviewers(Index:=1)

For Each

Here is an example of processing the Reviewer items in a collection.


Dim rvw As Reviewer
For Each rvw In ActiveWindow.View.RevisionsFilter.Reviewers
	
Next rvw

Visible

True if the specified object is visible.

Some methods and properties may be unavailable if the Visible property is False.


ActiveWindow.View.RevisionsFilter.Reviewers(1).Visible = True