PrintComments Property
Applies To
Options object.
Description
True if Word prints comments, starting on a new page at the end of the document. Read/write Boolean.
Remarks
Setting the PrintComments property to True automatically sets the PrintHiddenText property to True. However, setting the PrintComments property to False has no effect on the setting of the PrintHiddenText property.
See Also
Comments property, PrintDrawingObjects property, PrintFieldCodes property, PrintHiddenText property, PrintOut method.
Example
This example sets Word to print comments, and then it prints the active document.
Options.PrintComments = True
ActiveDocument.PrintOut
This example returns the current status of the Comments option on the Print tab in the Options dialog box.
temp = Options.PrintComments