API Documentation > CorelDRAW > 2025-v26 > PrintTrapping > IPrnVBAPrintTrapping
PrintTrapping.InternalImageTrapping property
Specifies whether internal image trapping is used
Syntax:
Property Get InternalImageTrapping() As Boolean
Property Let InternalImageTrapping(ByVal Value As Boolean)
Remarks:
The InternalImageTrapping property specifies a Boolean (True or False) value that indicates whether to apply a color trap within an image.
Examples:
The following VBA example enables image trapping.
Sub Test()
With ActiveDocument.PrintSettings
  With .Trapping

 .InternalImageTrapping = False
  End With
  .ShowDialog
End With 
End Sub