PrintColorType 属性

       

返回或设置指定文档的打印方式:以黑白、以纯白色和纯黑色(亦称为高对比度)或以彩色方式。默认值由打印机设置。可读写。PpPrintColorType 类型。

expression.PrintColorType

expression  必选。该表达式返回“应用于”列表中的对象之一。

示例

本示例以彩色方式打印当前演示文稿的幻灯片。

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