Explorer.BeforeSize 事件 (Outlook)
当用户调整当前 Explorer 大小时发生。
语法
expression。 BeforeSize
( _Cancel_
)
表达 一个代表 Explorer 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
Cancel | 必需 | Boolean | 假 的事件发生时。 如果该事件过程将此参数设置为 True ,则不完成该操作, 浏览器 不会调整大小。 |
备注
该事件在开始后可以取消。 如果取消该事件,将不调整窗口大小。
示例
以下 Microsoft Visual Basic for Applications (VBA) 示例在调整检查器大小前向用户提示一条警告消息。 如果用户单击 "是",则可以调整检查器大小。 示例代码必须放在 类模块(如 ThisOutlookSession
)中,并且 Initialize_Handler()
应在 Microsoft Outlook 调用事件过程之前调用子例程。
Public WithEvents myIns As Outlook.Inspector
Public Sub Initialize_Handler()
Set myIns = Application.ActiveInspector
End Sub
Private Sub myIns_BeforeSize(Cancel As Boolean)
'Prompts the user before resizing the window
Dim lngAns As Long
lngAns = MsgBox("Are you sure you want to resize 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。