TableView.AutoPreview プロパティ (Outlook)
TableView オブジェクトでアイテムを自動的にプレビューする方法を示す OlAutoPreview クラスの定数を設定します。 値の取得と設定が可能です。
構文
式。 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 のサポートおよびフィードバックを参照してください。