Outlook) (SharingItem.MarkForDownload 屬性
會傳回或設定 OlRemoteStatus 常數,決定一旦遠端使用者收到專案的狀態。 讀取/寫入。
語法
expression。 MarkForDownload
表達 代表 SharingItem 物件的 變數。
註解
這個屬性讓遠端使用者擁有較不理想的資料傳輸能力,藉此提升訊息傳送的彈性。
範例
下列範例會在使用者的 [收件匣] 中搜尋並未完整下載的項目。 如果發現任何未完整下載的項目,便會顯示訊息並將此項目標記為可下載。
Sub DownloadItems()
Dim mpfInbox As Outlook.Folder
Dim obj As Object
Dim i As Integer
Set mpfInbox = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox)
'Loop all items in the Inbox folder
For i = 1 To mpfInbox.Items.Count
Set obj = mpfInbox.Items.Item(i)
'Verify if the state of the item is olHeaderOnly
If obj.DownloadState = olHeaderOnly Then
MsgBox ("This item has not been fully downloaded.")
'Mark the item to be downloaded.
obj.MarkForDownload = olMarkedForDownload
End If
Next
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。