Returns the color name for the separation plate
Syntax:
Property Get Color() As String
Remarks:
The Color property returns a read-only value that is associated with the color of a separation plate.
Examples:
The following VBA example displays the color of each separation plate.
Sub Test()
Dim strPlates As String
Dim Plate As SeparationPlate
Dim intPlateCounter As Integer
With ActiveDocument.PrintSettings.Separations
  For intPlateCounter = 1 To .Plates.Count - 1

 strPlates = strPlates & .Plates(intPlateCounter).Color & vbCr
  Next intPlateCounter
  MsgBox strPlates
End With 
End Sub