Explorer.BeforeItemCut 事件 (Outlook)
从文件夹中剪切 Outlook 项目时发生。
语法
expression。 BeforeItemCut
( _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_BeforeItemCut(Cancel As Boolean)
'Prompts the user before cutting an item
Dim lngAns As Long
'Display question to user
lngAns = MsgBox("Are you sure you want to cut the item?", vbYesNo)
'Set cancel argument based on user's answer
If lngAns = vbYes Then
Cancel = False
ElseIf lngAns = vbNo Then
Cancel = True
End If
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。