PictureFormat.ColorType property (PowerPoint)

Returns or sets the type of color transformation applied to the specified picture or OLE object. Read/write.

Syntax

expression.ColorType

expression A variable that represents a PrintOptions object.

Return value

MsoPictureColorType

Remarks

The value of the ColorType property can be one of these MsoPictureColorType constants.

msoPictureAutomatic
msoPictureBlackAndWhite
msoPictureGrayscale
msoPictureMixed
msoPictureWatermark

Example

This example sets the color transformation to grayscale for shape one on myDocument. Shape one must be either a picture or an OLE object.

Set myDocument = ActivePresentation.Slides(1)

myDocument.Shapes(1).PictureFormat.ColorType = msoPictureGrayScale

See also

PictureFormat Object

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.