Object Model Reference : Classes : P : PrintSeparations : Properties : PrintSeparations.Plates |
Property Plates As SeparationPlates
Member of PrintSeparations
The Plates property returns a read-only reference to the SeparationPlates collection.
The following VBA example displays the number of items in the SeparationPlates collection.
Sub Test() |
Dim Seps As SeparationPlates |
With ActiveDocument |
With .PrintSettings |
Set Seps = .Separations.Plates |
.Separations.Enabled = True |
MsgBox "There are " & Seps.Count & " plates." |
End With |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.