Share via


ColorFormat.RGB Property

PowerPoint Developer Reference

Returns or sets the red-green-blue (RGB) value of the specified color. Read/write.

Syntax

expression.RGB

expression   A variable that represents a ColorFormat object.

Return Value
MsoRGBType

Example

This example sets the background color for color scheme three in the active presentation and then applies the color scheme to all slides in the presentation that are based on the slide master.

Visual Basic for Applications
  With ActivePresentation
    Set cs1 = .ColorSchemes(3)
    cs1.Colors(ppBackground).RGB = RGB(128, 128, 0)
    .SlideMaster.ColorScheme = cs1
End With

See Also