MailItem.Importance 属性 (Outlook)

返回或设置一个 OlImportance 常量,该常量指示 Outlook 项目的相对重要性级别。 读/写。

语法

expressionImportance

expression 表示 MailItem 对象的变量。

备注

此属性对应于 PidTagImportance 的 MAPI 属性。

示例

本 Visual Basic for Applications (VBA) 示例检查最顶层检查器中显示的项目是否由"Dan Wilson"发送,并且重要性级别为"高"。 如果是,则为用户显示一个消息框。 运行本示例之前,请用通讯簿中的有效姓名代替"Dan Wilson"。

Sub CheckSenderName 
 
 Dim myItem As Outlook.MailItem 
 
 
 
 Set myItem = Application.ActiveInspector.CurrentItem 
 
 If myItem.Importance = 2 And _ 
 
 myItem.SenderName = "Dan Wilson" Then 
 
 MsgBox "This message is sent by your manager with High importance." 
 
 End If 
 
End Sub

另请参阅

MailItem 对象

支持和反馈

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