Object Model Reference : Classes : T : TrapLayer : Properties : TrapLayer.Order |
Property Order As Long
Member of TrapLayer
The Order property returns or specifies the order in which separations are printed.
The following VBA example lists the order of the plates.
Sub Test() |
Dim intCounter As Integer |
Dim s As String |
s = "Color - Order" & vbCr & vbCr |
With ActiveDocument.PrintSettings.Trapping.Layers |
For intCounter = 1 To .Count - 1 |
s = s & .Item(intCounter).Color & " - " & .Item(intCounter).Order & vbCr |
Next intCounter |
End With |
MsgBox s |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.