API Documentation > CorelDRAW > 2025-v26 > Printer > IPrnVBAPrinter
Printer.ColorEnabled property
Returns True if color output for this printer is enabled
Syntax:
Property Get ColorEnabled() As Boolean
Remarks:
The ColorEnabled property returns a read-only Boolean (True or False) value that indicates whether a printer can print in color.
Examples:
The following VBA example lists the model names of printers that can print in color.
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.ColorEnabled = True Then

 s = s & Prn.Type & vbCr
  End If
Next intCounter
MsgBox "The following printers are able to print in color: " & vbCr & s
Set Prn = Nothing 
End Sub