PrintColorType Property

Applies To

PrintOptions object.

Description

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. Can be one of the following PpPrintColorType constants: ppPrintBlackAndWhite, ppPrintColor, or ppPrintPureBlackAndWhite. The default value is set by the printer. Read/write Long.

Example

This example prints the slides in the active presentation in color.

With Application.ActivePresentation
    .PrintOptions.PrintColorType = ppPrintColor
    .PrintOut
End With