PrintComments Property

Microsoft Word Visual Basic

PrintComments Property

       

True if Microsoft Word prints comments, starting on a new page at the end of the document. Read/write Boolean.

expression.PrintComments

expression   Required. An expression that returns an Options object.

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.

Example

This example sets Word to print comments and then prints the active document.

Options.PrintComments = True
ActiveDocument.PrintOut