Application.AfterNewPresentation Event

PowerPoint Developer Reference

Occurs after a presentation is created.

Version Information
 Version Added:  PowerPoint 2007

Syntax

expression.AfterNewPresentation(Pres)

expression   An expression that returns a 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.

Visual Basic for Applications
  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