Application.AfterPresentationOpen event (PowerPoint)

Occurs after an existing presentation is opened.

Syntax

expression. AfterPresentationOpen( _Pres_ )

expression An expression that returns an Application object.

Parameters

Name Required/Optional Data type Description
Pres Required Presentation The presentation that is opened.

Example

This example modifies the background color for color scheme three, applies the modified color scheme to the presentation that was opened, and displays the presentation in Slide view.

Private Sub App_AfterPresentationOpen(ByVal Pres As Presentation)

    With Pres

        Set CS3 = .ColorSchemes(3)

        CS3.Colors(ppBackground).RGB = RGB(240, 115, 100)

        With Windows(1)

            .Selection.SlideRange.ColorScheme = CS3

            .ViewType = ppViewSlide

        End With

    End With

End Sub

See also

Application Object

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.