Share via


Plate.ConvertToProcess Method

Publisher Developer Reference

Converts the specified plate from spot color to process.

Syntax

expression.ConvertToProcess

expression   A variable that represents a Plate object.

Remarks

The ConvertToProcess method is only accessible if the publication's color mode has been set to process and spot color inks. Use the EnterColorMode method of the Document object to specify a publication's color mode.

Returns "Permission Denied" when applied to a spot color plate. When the color mode includes process color, the process color inks (black, magenta, yellow and cyan) are the first four plates in the Plates collection.

When a plate is converted from spot to process color, all colors in the publication based on the ink that the converted plate represents are converted to process colors.

Example

The following example converts the specified spot color plate to process color. The example assumes the publication's color mode has been specified as spot and process color, and that at least six plates have been defined for the publication.

Visual Basic for Applications
  Sub ChangePlateToProcess()
With ActiveDocument.Plates.Item(6)
    .<strong class="bterm">ConvertToProcess</strong>
End With

End Sub

See Also