Expand Minimize
0 out of 1 rated this helpful - Rate this topic

View.Reviewers Property (Word)

Office 2010

Returns a Reviewers object that represents all reviewers.

expression .Reviewers

expression An expression that returns a View object.

The Reviewers object is a global list of all reviewers, regardless of whether the reviewer reviewed the document displayed in the specified window.

This example hides all revisions and comments in the document and displays only revisions and comments made by "Jeff Smith."

Sub HideRevisions() 
 Dim revName As Reviewer 
 With ActiveWindow.View 
 .ShowRevisionsAndComments = False 
 .ShowFormatChanges = True 
 .ShowInsertionsAndDeletions = True 
 
 For Each revName In .Reviewers 
 revName.Visible = True 
 Next 
 
 .Reviewers.Item("Jeff Smith").Visible = True 
 End With 
End Sub
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.