Outlook () 的 MailItem.ReceivedOnBehalfOfEntryID 屬性
會傳回 String ,代表委派來代表郵件訊息收件者的使用者 EntryID 。 唯讀。
語法
expression。 ReceivedOnBehalfOfEntryID
表達 代表 MailItem 物件的 變數。
註解
此屬性相當於 MAPI 屬性 PidTagReceivedRepresentingEntryId。
如果您要在 Microsoft Visual Basic 或 Microsoft Visual Basic for Applications (VBA) 解決方案中取得此屬性,因為某些類型問題,而不是直接參考ReceivedOnBehalfOfEntryID,您應該透過MailItem.PropertyAccessor屬性所傳回的PropertyAccessor物件取得屬性,並指定 MAPI 屬性PidTagReceivedRepresentingEntryId屬性及其 MAPI proptag 命名空間。 下列 VBA 程式碼範例顯示解決方法。
Public Sub GetReceiverEntryID()
Dim objInbox As Outlook.Folder
Dim objMail As Outlook.MailItem
Dim oPA As Outlook.PropertyAccessor
Dim strEntryID As String
Const PidTagReceivedRepresentingEntryId As String = "http://schemas.microsoft.com/mapi/proptag/0x00430102"
Set objInbox = Application.Session.GetDefaultFolder(olFolderInbox)
Set objMail = objInbox.Items(1)
Set oPA = objMail.PropertyAccessor
strEntryID = oPA.BinaryToString(oPA.GetProperty(PidTagReceivedRepresentingEntryId))
Debug.Print strEntryID
Set objInbox = Nothing
Set objMail = Nothing
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。