API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.RasterizeResolution property
Specifies the page rasterization resolution
Syntax:
Property Get RasterizeResolution() As Long
Property Let RasterizeResolution(ByVal Value As Long)
Remarks:
The RasterizeResolution property returns or specifies the resolution of a document when printed as a bitmap. This property is used in conjunction with the PrintOptions.RasterizePage property, which prints a document as a bitmap.
Examples:
The following VBA example specifies each page to print as a bitmap with a resolution of 300 dpi, and it then prints the document.
Sub Test()
With ActiveDocument.PrintSettings.Options
  .RasterizePage = True
  .RasterizeResolution = 300
End With
ActiveDocument.PrintOut 
End Sub