(Outlook) 的 TableView.AutoPreviewFont 屬性
會傳回 ViewFont 物件,代表在 TableView 物件中自動預覽 Outlook 專案時所使用的字型。 唯讀。
語法
expression。 AutoPreviewFont
表達 代表 TableView 物件的變數。
範例
下列 Visual Basic for Applications (VBA) 範例會針對從目前TableView物件的AutoPreviewFont屬性傳回的ViewFont物件,遞減Size屬性的值。
Private Sub ReduceAutoPreviewFontSize()
Dim objTableView As TableView
If Application.ActiveExplorer.CurrentView.ViewType = _
olTableView Then
' Obtain a TableView object reference for the
' current table view.
Set objTableView = _
Application.ActiveExplorer.CurrentView
' Decrement the Size property of the
' ViewFont object obtained from the
' AutoPreviewFont property, but only
' if the font is 6 points or larger.
If objTableView.AutoPreviewFont.Size > 5 Then
objTableView.AutoPreviewFont.Size = _
objTableView.AutoPreviewFont.Size - 1
' Save the table view.
objTableView.Save
End If
End If
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。