Skip to content

Latest commit

 

History

History
54 lines (30 loc) · 1.12 KB

PowerPoint.Presentation.ColorSchemes.md

File metadata and controls

54 lines (30 loc) · 1.12 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.ColorSchemes property (PowerPoint)
vbapp10.chm583013
vbapp10.chm583013
PowerPoint.Presentation.ColorSchemes
4782ee52-3bdd-4459-56da-609a92816692
06/08/2017
medium

Presentation.ColorSchemes property (PowerPoint)

Returns a ColorSchemes collection that represents the color schemes in the specified presentation. Read-only.

Syntax

expression. ColorSchemes

expression A variable that represents a Presentation object.

Return value

ColorSchemes

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.

With ActivePresentation

    Set cs1 = .ColorSchemes(3)

    cs1.Colors(ppBackground).RGB = RGB(128, 128, 0)

    .SlideMaster.ColorScheme = cs1

End With

See also

Presentation Object

[!includeSupport and feedback]