Share via


PrintOptions.PrintFontsAsGraphics Property

PowerPoint Developer Reference

Determines whether TrueType fonts are printed as graphics. Read/write.

Syntax

expression.PrintFontsAsGraphics

expression   A variable that represents a PrintOptions object.

Return Value
MsoTriState

Remarks

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

Constant Description
msoFalse TrueType fonts are not printed as graphics.
msoTrue TrueType fonts are printed as graphics.

Example

This example specifies that TrueType fonts in the active presentation be printed as graphics.

Visual Basic for Applications
  ActivePresentation.PrintOptions.PrintFontsAsGraphics = msoTrue

See Also