RGBColor Object

Description

Represents a single color in a color scheme.

Using the RGBColor Object

Use the Colors method to return an RGBColor object. You can set an RGBColor object to another RGBColor object, or you can use the RGB property to set or return the explicit red-green-blue value for an RGBColor object. 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
Properties

Application property, Parent property, RGB property.