Inspector.Close 方法 (Outlook)

关闭 Inspector 并根据需要保存对显示的 Outlook 项目所做的更改。

语法

表达式关闭 (SaveMode)

表达 一个代表 Inspector 对象的变量。

参数

名称 必需/可选 数据类型 说明
SaveMode 必需 OlInspectorClose 关闭行为。 如果在检查器中显示的项目尚未更改,则该参数无效。

备注

注意

请勿在 Outlook) 事件处理程序 (Inspector.Activate 事件 中使用此方法。

示例

以下 Visual Basic for Applications (VBA) 示例将保存并关闭活动检查器中显示的项目,而不提示用户。 要运行该示例,需在检查器窗口中已有项目显示。

Sub CloseItem() 
 
 Dim myinspector As Outlook.Inspector 
 
 Dim myItem As Outlook.MailItem 
 
 
 
 Set myinspector = Application.ActiveInspector 
 
 Set myItem = myinspector.CurrentItem 
 
 myItem.Close olSave 
 
End Sub

另请参阅

检查对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。