Outlook) (MailItem.ItemProperties 屬性
會傳回 ItemProperties 集合,代表與 Outlook 專案相關聯的所有標準和使用者定義屬性。 唯讀。
語法
expression。 ItemProperties
表達 代表 MailItem 物件的 變數。
註解
ItemProperties 集合是一個以零為基礎的集合,表示集合中的第一個物件是由索引 0 參照。
範例
下列 Microsoft Visual Basic for Applications (VBA) 範例會傳回與MailItem物件相關聯的ItemProperties集合。
Sub ItemProperty()
'Creates a new email item and accesses its properties.
Dim objMail As Outlook.MailItem
Dim objItems As Outlook.ItemProperties
Dim objItem As Outlook.ItemProperty
'Create the email item.
Set objMail = Application.CreateItem(olMailItem)
'Create a reference to the email item's properties collection.
Set objItems = objMail.ItemProperties
'Create a reference to the third email item property.
Set objItem = objItems.Item(2)
MsgBox objItem.Name & " = " & objItem.Value
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。