API Documentation > CorelDRAW > 2025-v26 > PrintSettings > IPrnVBAPrintSettings
PrintSettings.Printer property
Specifies the destination printer for the print job
Syntax:
Property Get Printer() As Printer
Property Set Printer(ByVal Value As Printer)
Remarks:
The Printer property returns a Printer value, which is a reference to the current printer.
Examples:
The following VBA example displays the name of the current printer.
Sub Test()
MsgBox "The current printer is:" & vbCr & _
  ActiveDocument.PrintSettings.Printer.Name 
End Sub