PrintOptions.PrintColorType Property (PowerPoint)
Returns or sets the way the specified document will be printed: in black and white, in pure black and white (also referred to as high contrast), or in color. Read/write.
Syntax
expression .PrintColorType
expression A variable that represents a PrintOptions object.
Return Value
PpPrintColorType
Remarks
The value of the PrintColorType property can be one of these PpPrintColorType constants. The default value is set by the printer.
ppPrintBlackAndWhite |
ppPrintColor |
ppPrintPureBlackAndWhite |
Example
This example prints the slides in the active presentation in color.
With Application.ActivePresentation
.PrintOptions.PrintColorType = ppPrintColor
.PrintOut
End With