Object Model Reference : Classes : S : SeparationPlate : Properties : SeparationPlate.Enabled |
Property Enabled As Boolean
Member of SeparationPlate
The Enabled property allows a user to specify which separation plate to print.
The following VBA example displays the disabled separation plates.
Sub Test() |
Dim intPlateCounter As Integer |
With ActiveDocument.PrintSettings.Separations |
For intPlateCounter = 1 To .Plates.Count - 1 |
If .Plates(intPlateCounter).Enabled <> True Then |
MsgBox "The " & .Plates(intPlateCounter).Color & _ |
" is not enabled." |
End If |
Next intPlateCounter |
End With |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.