Specifies whether color separation is enabled
Syntax:
Property Get Enabled() As Boolean
Property Let Enabled(ByVal Value As Boolean)
Remarks:
The PrintSeparations property specifies a Boolean (True or False) value that indicates whether to print separations.
Examples:
The following VBA example enables separations and displays the Print dialog box.
Sub Test()
With ActiveDocument
  With .PrintSettings

 .Separations.Enabled = True

 .ShowDialog
  End With
End With 
End Sub