PrintColorType Property

Microsoft PowerPoint Visual Basic

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. The default value is set by the printer. Read/write 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