RGBColor object (PowerPoint)

Represents a single color in a color scheme.

Example

Use the Colorsmethod to return an RGBColor object. You can set an RGBColor object to another RGBColor object. Use the RGBproperty to set or return the explicit red-green-blue value for an RGBColor object, with the exception of the RGBColor objects defined by the ppNotSchemeColor and ppSchemeColorMixed constants. The RGB property can be returned, but not set, for these two objects. The following example sets the background color in color scheme one in the active presentation to red and sets the title color to the title color that's defined for color scheme two.

With ActivePresentation.ColorSchemes

    .Item(1).Colors(ppBackground).RGB = RGB(255, 0, 0)

    .Item(1).Colors(ppTitle) = .Item(2).Colors(ppTitle)

End With

See also

PowerPoint Object Model Reference

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.