Plate Object

Publisher Developer Reference

Represents a single printer's plate. The Plate object is a member of the Plates collection.

Example

Use the Add method of the Plates collection to create a new plate. This example creates a new spot-color plate collection and adds a plate to it.

Visual Basic for Applications
  Sub AddNewPlates()
    Dim plts As Plates
    Set plts = ActiveDocument.CreatePlateCollection(Mode:=pbColorModeSpot)
    plts.Add
    With plts(1)
        .Color.RGB = RGB(Red:=255, Green:=0, Blue:=0)
        .Luminance = 4
    End With
End Sub

Use the FindPlateByInkName method to return a specific plate by referencing its ink name. Process colors are assigned different index numbers in the Plates collection than in the PrintablePlates collection. Use the FindPlateByInkName method to insure the desired Plate or PrintablePlate object is accessed.

See Also