Object Model Reference : Classes : T : TrapLayer : Properties : TrapLayer.TrapType |
Property TrapType As PrnTrapType
Member of TrapLayer
The TrapType property controls the opacity of a trap.
The following VBA example sets each trap layer as transparent.
Sub Test() |
Dim intCounter As Integer |
With ActiveDocument.PrintSettings.Trapping.Layers |
For intCounter = 1 To .Count - 1 |
.Item(intCounter).TrapType = prnLayerTransparent |
Next intCounter |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.