Determines whether the current color separation plate is to be output
Syntax:
Property Get Enabled() As Boolean
Property Let Enabled(ByVal Value As Boolean)
Remarks:
The Enabled property specifies a Boolean (True or False) value that indicates whether to let the user specify which separation plate to print.
Examples:
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