Document.Comments property (Word)
Returns a Comments collection that represents all the comments in the specified document. Read-only.
Syntax
expression.Comments
expression A variable that represents a Document object.
Remarks
For information about returning a single member of a collection, see Returning an object from a collection.
Example
This example compares the author name of each comment in the active document with the user name on the User Information tab in the Options dialog box (Tools menu). If the names aren't the same, the comment reference mark is formatted to appear in red.
For Each comm In ActiveDocument.Comments
If comm.Author <> Application.UserName Then _
comm.Reference.Font.ColorIndex = wdRed
Next comm
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.