PrintColorType Property

PpPrintColorType

PpPrintColorType can be one of these PpPrintColorType constants.
ppPrintBlackAndWhite
ppPrintColor
ppPrintPureBlackAndWhite

expression.PrintColorType

*expression   * Required. An expression that returns one of the objects in the Applies To list.

Example

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

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

Applies to | PrintOptions Object