PowerPoint) (Application.NewPresentation 事件
會在建立簡報之後發生,也就是當簡報加入至 Presentations 集合時。
語法
expression。 NewPresentation
( _Pres_
)
表達 會傳回 Application 物件的運算式。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Pres | 必要 | 簡報 | 新的簡報。 |
註解
如果您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
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。