API Documentation > CorelDRAW > 2025-v26 > Printer > IPrnVBAPrinter
Printer.Description property
Returns the description string for the printer
Syntax:
Property Get Description() As String
Remarks:
The Description property returns a read-only value containing the description associated with a printer.
Examples:
The following VBA example lists the model names and descriptions of all installed printers.
Sub Test()
Dim intCounter As Integer
Dim Prn As Printer
Dim s As String
For intCounter = 1 To Printers.Count
  Set Prn = Printers(intCounter)
  If Prn.Description <> "" Then

 s = s & Prn.Type & " - " & Prn.Description & vbCr
  End If
Next intCounter
MsgBox "The following printers are installed on your system: " & vbCr & vbCr & s
Set Prn = Nothing 
End Sub