API Documentation > CorelDRAW > 2025-v26 > PrintTrapping > IPrnVBAPrintTrapping
PrintTrapping.Enabled property
Specifies whether in-RIP color trapping is enabled
Syntax:
Property Get Enabled() As Boolean
Property Let Enabled(ByVal Value As Boolean)
Remarks:
The Enabled property specifies a Boolean (True or False) value that indicates whether print trapping is turned on.
Examples:
The following VBA example displays the current status of print trapping and displays the Print dialog box.
Sub Test()
With ActiveDocument.PrintSettings
  With .Trapping

 If .Enabled = True Then


MsgBox "Print trapping is currently enabled"

 Else


MsgBox "Print trapping is currently disabled"

 End If
  End With
  .ShowDialog
End With 
End Sub