TableView.ColumnFont プロパティ (Outlook)
TableView オブジェクトの列見出しを表示するときに使用されるフォントを表す ViewFont オブジェクトを取得します。 値の取得のみ可能です。
式。 ColumnFont
式TableView オブジェクトを表す変数。
次のVisual Basic for Applications (VBA) サンプルでは、現在の TableView オブジェクトの ColumnFont プロパティから返される ViewFont オブジェクトの Size プロパティの値をインクリメントします。
Private Sub IncreaseColumnFontSize()
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
' ColumnFont property, but only
' if the font is less than 24 points
' in size.
If objTableView.ColumnFont.Size < 24 Then
objTableView.ColumnFont.Size = _
objTableView.ColumnFont.Size + 1
' Save the table view.
objTableView.Save
End If
End If
End Sub
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。