API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.PrintBitmaps property
Specifies whether bitmap images should be printed
Syntax:
Property Get PrintBitmaps() As Boolean
Property Let PrintBitmaps(ByVal Value As Boolean)
Remarks:
The PrintBitmaps property returns or specifies a Boolean (True or False) value that indicates whether to print bitmaps.
Examples:
The following VBA example creates a rectangle, fills the rectangle, and converts it to a bitmap. It then creates another rectangle. Finally, before printing the document, it specifies not to print bitmaps but to print vectors.
Sub Test()
Dim s As Shape
With ActiveDocument
  Set s = .ActiveLayer.CreateRectangle(2, 6, 8, 8)
  s.Fill.UniformColor.RGBAssign 255, 0, 0
  s.ConvertToBitmap , , , , 96
  Set s = .ActiveLayer.CreateRectangle(4, 6, 8, 2)
  .PrintSettings.Options.PrintBitmaps = False
  .PrintSettings.Options.PrintVectors = True
  .PrintOut
End With 
End Sub