Share via


PrintOptions.PrintComments Property

PowerPoint Developer Reference

Sets or returns whether comments will be printed. Read/write.

Syntax

expression.PrintComments

expression   A variable that represents a PrintOptions object.

Return Value
MsoTriState

Remarks

The value of the PrintComments property can be one of these MsoTriState constants.

Constant Description
msoFalse The default. Comments will not be printed.
msoTrue Comments will be printed.

Example

This example instructs Microsoft Office PowerPoint to print comments.

Visual Basic for Applications
  Sub PrintPresentationComments
    ActivePresentation.PrintOptions.PrintComments = msoTrue
End Sub

See Also