Previous Document Next Document
SeparationPlate.Enabled

Property Enabled As Boolean

Member of SeparationPlate

The Enabled property allows a user to specify which separation plate to print.

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

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.