Explorer.BeforeMove 事件 (Outlook)
当用户移动 Explorer 时发生。
语法
expression。 BeforeMove
( _Cancel_
)
表达 一个代表 Explorer 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
Cancel | 必需 | Boolean | 假 的事件发生时。 如果事件过程将此参数设置为 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。