Application.NewPresentation 事件 (PowerPoint)

在创建演示文稿后发生,同时将其添加到 Presentations 集合。

语法

expressionNewPresentation( _Pres_ )

表达 返回 Application 对象的表达式。

参数

名称 必需/可选 数据类型 说明
Pres 必需 Presentation 新演示文稿。

备注

如果您的Visual Studio解决方案包括 Microsoft.Office.Interop.PowerPoint的引用,此事件将映射到以下类型:

  • Microsoft.Office.Interop.PowerPoint.EApplication_NewPresentationEventHandler( NewPresentation委托。)

  • Microsoft.Office.Interop.PowerPoint.EApplication_Event.NewPresentation( NewPresentation事件。)

示例

本示例使用 RGB 函数将新演示文稿的幻灯片母版的背景色设置为鲑鱼粉色,并将第三个配色方案应用于新的演示文稿。

Private Sub App_NewPresentation(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

另请参阅

Application 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。