Returns a collection of available color separation plates
Syntax:
Property Get Plates() As SeparationPlates
Remarks:
The Plates property returns a read-only value that is associated with the SeparationPlates collection.
Examples:
The following VBA example displays the number of items in the SeparationPlates collection.
Sub Test()
Dim Seps As SeparationPlates
With ActiveDocument
  With .PrintSettings

 Set Seps = .Separations.Plates

 .Separations.Enabled = True

 MsgBox "There are " & Seps.Count & " plates."
  End With
End With 
End Sub