API Documentation
>
CorelDRAW
>
2025-v26
>
PrintTrapping
>
IPrnVBAPrintTrapping
PrintTrapping.ImageTrap property
Specifies the bitmap image trap placement
Syntax:
Property
Get
ImageTrap
(
)
As
PrnImageTrap
Property
Let
ImageTrap
(
ByVal
Value
As
PrnImageTrap
)
Remarks:
The
ImageTrap
property specifies, as
PrnImageTrap
, the placement of a color trap.
Examples:
The following VBA example specifies the placement of the trap as
Choke
.
Sub Test() With ActiveDocument.PrintSettings.Trapping .ImageTrap = prnTrapChoke End With End Sub