Plate object (Publisher)

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

Remarks

Use the Add method of the Plates collection to create a new plate.

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 ensure that the desired Plate object is accessed.

Example

This example creates a new spot-color plate collection and adds a plate to it.

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

Methods

Properties

See also

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.