FrameColors Property

Microsoft PowerPoint Visual Basic

Returns or sets the text color for the outline pane and the background color for the outline and slide panes for Web presentations. Read/write PpFrameColors.

PpFrameColors can be one of these PpFrameColors constants.
ppFrameColorsBlackTextOnWhite
ppFrameColorsBrowserColors
ppFrameColorsPresentationSchemeAccentColor
ppFrameColorsPresentationSchemeTextColor
ppFrameColorsWhiteTextOnBlack

expression.FrameColors

expression    Required. An expression that returns one of the objects in the Applies To list.

Example

This example specifies that when saving or publishing the active presentation as a Web page, the text color for the outline pane is white and the background color for the outline and slide panes is black, and Portable Network Graphics (PNG) are allowed as an image format.

With ActivePresentation.WebOptions
    .FrameColors = ppFrameColorsWhiteTextOnBlack
    .AllowPNG = True
End With