ConvertToProcess Method

Microsoft Publisher Visual Basic

ConvertToProcess Method

Converts the specified plate from spot color to process.

expression.ConvertToProcess

expression    Required. An expression that returns one of the objects in the Applies To list.

Remarks

The ConvertToProcess method is only accessible if the publication's color mode has been set to process and spot color inks. Returns "Permission Denied" for any other color mode. Use the ColorMode property of the Document object to specify a publication's color mode.

Returns "Permission Denied" when applied to a process 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.

    Sub ChangePlateToProcess()

    With ActiveDocument.Plates.Item(6)
        .ConvertToProcess
    End With

End Sub