Previous Document Next Document
TrapLayer.Order

Property Order As Long

Member of TrapLayer

The Order property returns or sets the order in which the separations print.

The following code 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 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.