API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.RasterizePage property
Specifies whether the whole page should be rasterized first before sending it to the printer
Syntax:
Property Get RasterizePage() As Boolean
Property Let RasterizePage(ByVal Value As Boolean)
Remarks:
The RasterizePage property returns or specifies a Boolean (True or False) value that indicates whether to print 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