PowerPoint) (Application.PresentationOpen 事件
會發生在開啟現有的簡報之後,也就是當簡報加入至 Presentations 集合時。
語法
expression。 PresentationOpen
( _Pres_
)
表達 會傳回 Application 物件的運算式。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Pres | 必要 | 簡報 | 開啟的簡報。 |
註解
如需搭配 Application 物件使用事件的詳細資訊,請參閱操作方法:搭配 Application 物件使用事件。
如果您Visual Studio解決方案包括 Microsoft.Office.Interop.PowerPoint參照,此事件會對應至下列類型:
Microsoft.Office.Interop.PowerPoint.EApplication_PresentationOpenEventHandler( PresentationOpen代理人)。
Microsoft.Office.Interop.PowerPoint.EApplication_Event.PresentationOpen( PresentationOpen事件)。
範例
這個範例修改第三個色彩配置的背景色彩,將修改過的色彩配置套用至剛開啟的簡報,並以 [投影片檢視] 顯示簡報。
Private Sub App_PresentationOpen(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
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。