(Outlook) 的 TableView.RowFont 屬性
會傳回 ViewFont 物件,代表在 TableView 物件中顯示資料列時所使用的字型。 唯讀。
語法
expression。 RowFont
表達 代表 TableView 物件的變數。
範例
下列 Visual Basic for Applications (VBA) 範例會針對從目前TableView物件的RowFont屬性傳回的ViewFont物件,遞增Size屬性的值。
Private Sub IncreaseRowFontSize()
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
' Increment the Size property of the
' ViewFont object obtained from the
' RowFont property, but only
' if the font is less than 24 points
' in size.
If objTableView.RowFont.Size < 24 Then
objTableView.RowFont.Size = _
objTableView.RowFont.Size + 1
' Save the table view.
objTableView.Save
End If
End If
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。