(Outlook) 的 TableView.AutoPreview 屬性
會傳回或設定 OlAutoPreview 常數,決定 TableView 物件如何自動預覽專案。 讀取/寫入。
語法
expression。 AutoPreview
表達 代表 TableView 物件的變數。
範例
下列 Visual Basic for Applications (VBA) 範例會針對與目前 Folder 物件相關的每個 TableView 物件,將其 AutoPreview 屬性設定為 olAutoPreviewUnread。
Private Sub PreviewUnreadOnly()
Dim objFolder As Folder
Dim objView As View
Dim objTableView As TableView
' Retrieve a Folder object reference
' for the current folder
Set objFolder = Application.ActiveExplorer.CurrentFolder
' Enumerate through the Views collection for the
' Folder object.
For Each objView In objFolder.Views
' Check if the view is a table view.
If objView.ViewType = olTableView Then
' Cast the View object to a TableView object.
Set objTableView = objView
' Set the view so that only unread messages
' are automatically previewed.
objTableView.AutoPreview = olAutoPreviewUnread
' Save the table view.
objTableView.Save
End If
Next
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。