API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.MonoResolution property
Specifies the downsampling resolution for monochrome black&white bitmaps
Syntax:
Property Get MonoResolution() As Long
Property Let MonoResolution(ByVal Value As Long)
Remarks:
The MonoResolution property returns or specifies the resolution of monochrome bitmaps for printing.
Examples:
The following VBA example activates downsampling for color, grayscale, and monochrome bitmaps. It then specifies the resolution and prints the document.
Sub Test()
Dim DrawPrintOptions As PrintOptions
Set DrawPrintOptions = ActiveDocument.PrintSettings.Options
With DrawPrintOptions
  'set all downsampling to True
  .DownsampleColor = True
  .DownsampleGray = True
  .DownsampleMono = True
  'set the resolution
  .ColorResolution = 96
  .GrayResolution = 150
  .MonoResolution = 600
End With
'print the document
ActiveDocument.PrintOut 
End Sub