API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.ColorMode property
Specifies the color mode for the print job
Syntax:
Property Get ColorMode() As PrnColorMode
Property Let ColorMode(ByVal Value As PrnColorMode)
Remarks:
The ColorMode property returns or specifies, as PrnColorMode, how colors are printed: in full color, black and white, or grayscale.
Examples:
The following code example changes the ColorMode setting from the default (full color) to grayscale.
Sub Test()
ActiveDocument.PrintSettings.Options.ColorMode = prnModeGrayscale 
End Sub