Application.AfterNewPresentation event (PowerPoint)

Occurs after a presentation is created.

Syntax

expression. AfterNewPresentation( _Pres_ )

expression An expression that returns an Application object.

Parameters

Name Required/Optional Data type Description
Pres Required Presentation Name of the presentation.

Example

This example uses the RGB function to set the slide master background color for the new presentation to salmon pink, and then applies the third color scheme to the new presentation.

Private Sub App_AfterNewPresentation(ByVal Pres As Presentation)

    With Pres

        Set CS3 = .ColorSchemes(3)

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

        .SlideMaster.ColorScheme = CS3

    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.