PowerPoint (的 Application.WindowActivate 事件)
發生在啟動應用程式視窗或任何文件視窗時。
語法
運算式。WindowActivate (Pres、 Wn)
expression 代表 Application 物件的變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Pres | 必要 | Presentation | 顯示在啟動視窗中的簡報。 |
Wn | 必要 | DocumentWindow | 啟動的文件視窗。 |
註解
如需搭配 Application 物件使用事件的詳細資訊,請參閱操作方法:搭配 Application 物件使用事件。
如果您Visual Studio解決方案包括 Microsoft.Office.Interop.PowerPoint參照,此事件會對應至下列類型:
Microsoft.Office.Interop.PowerPoint.EApplication_WindowActivateEventHandler( WindowActivate代理人)。
Microsoft.Office.Interop.PowerPoint.EApplication_Event.WindowActivate( WindowActivate事件)。
範例
這個範例會在投影片瀏覽模式中開啟每一個啟動的簡報。
Private Sub App_WindowActivate (ByVal Pres As Presentation, ByVal Wn As DocumentWindow)
Wn.ViewType = ppViewSlideSorter
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。