Explorer.BeforeMove 事件 (Outlook)
發生于使用者移動 Explorer 時。
語法
expression。 BeforeMove
( _Cancel_
)
表達 代表 Explorer 物件的 變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Cancel | 必要 | 布林值 | False 事件發生時。 如果事件程序將此引數設定為 True,則無法完成作業而且無法移動瀏覽器或檢閱程式。 |
註解
在啟動此物件之後可以將它取消。
範例
下列 Microsoft Visual Basic for Applications (VBA) 範例會在使用者移動總管之前,提示使用者輸入訊息。 如果使用者按一下 [是],使用者就可以移動瀏覽器。 範例程式碼必須放在 類別模組中,例如 ThisOutlookSession
,而且 Initialize_Handler()
應該先呼叫副程式,Microsoft Outlook 才能呼叫事件程序。
Public WithEvents myOlExp As Outlook.Explorer
Sub Initialize_Handler()
Set myOlExp = Application.ActiveExplorer
End Sub
Private Sub myOlExp_BeforeMove(Cancel As Boolean)
'Prompts the user before moving the window
Dim lngAns As Long
lngAns = MsgBox("Are you sure you want to move the current window? Use your keyboard to make your selection.", vbYesNo)
If lngAns = vbYes Then
Cancel = False
Else
Cancel = True
End If
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。