Outlook) (ItemProperties 对象
所有与项目关联的属性的集合。
备注
使用 ItemProperties 要返回的 ItemProperties 集合的属性。 使用 ItemProperties.Item (索引) (其中 index 是对象的名称或项在集合中的数值位置)可返回单个 ItemProperty 对象。
注意
[!注释] ItemProperties 集合是从零开始,即由 0 引用的集合中的第一项。
使用 Add 方法可向 ItemProperties 集合中添加一个新的项目属性。 使用 Remove 方法来从 ItemProperties 集合中移除的项的属性。
注意
[!注释] 只能添加或删除自定义的属性。 自定义属性由 IsUserProperty 表示。
示例
下面的示例创建一个新的 MailItem 对象并将其 ItemProperties 集合存储在名为 objItems
的变量中。
Sub ItemProperty()
'Creates a new MailItem and access its properties
Dim objMail As MailItem
Dim objItems As ItemProperties
Dim objItem As ItemProperty
'Create the mail item
Set objMail = Application.CreateItem(olMailItem)
'Create a reference to the item properties collection
Set objItems = objMail.ItemProperties
'Create a reference to the item property page
Set objItem = objItems.item(0)
End Sub
方法
名称 |
---|
Add |
项目 |
Remove |
属性
名称 |
---|
Application |
类 |
Count |
Parent |
Session |
另请参阅
ItemProperties 对象成员Outlook 对象模型参考
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。