Previous Document Next Document

Object Model Reference : Classes : S : SeparationPlate : Properties : SeparationPlate.Enabled


SeparationPlate.Enabled

Property Enabled As Boolean

Description

Member of SeparationPlate

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

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.