Outlook (的 ItemProperty.IsUserProperty 屬性)
會傳回 Boolean 值,指出項目屬性是否為使用者所建立的自訂屬性。 唯讀。
語法
expression。 IsUserProperty
表達 代表 ItemProperty 物件的 變數。
範例
下列範例會顯示使用者所建立之所有屬性的名稱。 副程式 DisplayUserProps
會接受ItemProperties集合並搜尋它,並顯示IsUserProperty值為True的所有ItemProperty物件名稱。 ItemProperties 集合是從零起始的。 換句話說,集合中的第一個物件會以零 (0) 的索引值來存取。
Sub ItemProperty()
'Creates a new mail item and access it's properties
Dim objMail As MailItem
Dim objitems As ItemProperties
'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
Call DisplayUserProps(objitems)
End Sub
Sub DisplayUserProps(ByVal objitems As ItemProperties)
'Displays the names of all user-created item properties in the collection
For i = 0 To objitems.Count - 1
'Display name of property if it was created by the user
If objitems.Item(i).IsUserProperty = True Then
MsgBox "The property " & objitems(i).Name & " was created by the user."
End If
Next i
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。