Specifies the in-RIP trapping layer order index
Syntax:
Property Get Order() As Long
Property Let Order(ByVal Value As Long)
Remarks:
The Order property returns or specifies the order in which separations are printed.
Examples:
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