Comments Collection Object

Description

A collection of Comment objects that represent the comments in a selection, range, or document.

Using the Comments Collection

Use the Comments property to return the Comments collection. The following example displays comments made by Don Funk in the active document.

ActiveWindow.View.SplitSpecial = wdPaneComments
ActiveDocument.Comments.ShowBy = "Don Funk"
Use the Add method to add a comment at the specified range. The following example adds a comment immediately after the selection.

Selection.Collapse Direction:=wdCollapseEnd
ActiveDocument.Comments.Add Range:=Selection.Range, Text:="review this"
Use Comments(index), where index is the index number, to return a single Comment object. The index number represents the position of the comment in the specified selection, range, or document. The following example displays the author of the first comment in the active document.

MsgBox ActiveDocument.Comments(1).Author
The following example displays the initials of the author of the first comment in the selection.

If Selection.Comments.Count >= 1 Then MsgBox Selection.Comments(1).Initial
Properties

Application property, Count property, Creator property, Parent property, ShowBy property.

Methods

Add method (Comments collection), Item method.