API Documentation > CorelDRAW > 2025-v26 > PDFVBASettings > IPDFVBASettings
PDFVBASettings.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 specifies the resolution for downsampled monochrome bitmaps when publishing to PDF. To apply the resolution, the PDFVBASettings.DownsampleMono option must be specified as True.
Examples:
The following VBA example publishes the active document to PDF. Color and grayscale bitmaps are downsampled to 72 dpi, and monochrome bitmaps are downsampled to 150 dpi.
Sub Test()
With ActiveDocument.PDFSettings
  .DownsampleColor = True
  .DownsampleGray = True
  .DownsampleMono = True
  .ColorResolution = 72
  .GrayResolution = 72
  .MonoResolution = 150
End With
ActiveDocument.PublishToPDF "C:\MyDocument.pdf" 
End Sub