数式バーの設定
数式バーの表示・非表示の設定を行うには、DisplayFormulaBar プロパティを使用します。設定にはブール型(Boolean)の値を使用します。
また、数式バーの高さを設定するには、FormulaBarHeight プロパティを使用します。設定は、長整数型(Long)の値を使用し、数式バーの高さを行数で指定します。
数式バー内の数式や文字を非表示にするには、数式を非表示にする(FormulaHidden プロパティ)を参照してください。
DisplayFormulaBar プロパティ
【書式】
<取得>
object.DisplayFormulaBar
<設定>
object.DisplayFormulaBar = boolean
引数・戻り値
- object ・・・ 対象となる Application オブジェクトを指定します。
- boolean ・・・ True を指定すると数式バーを表示、False を指定すると数式バーを非表示にします。
FormulaBarHeight プロパティ
【書式】
<取得>
object.FormulaBarHeight
<設定>
object.FormulaBarHeight = long
引数・戻り値
- object ・・・ 対象となる Application オブジェクトを指定します。
- long ・・・ 数式バーの高さを行数を長整数型(Long)の値で指定します。
FormulaBarHeight の指定された値が表示可能なウィンドウ領域より大きい場合、数式バーはウィンドウの高さと同じになるようサイズ変更されます。
Excel 2007 から数式バーの高さを変更できるようになったので、FormulaBarHeight プロパティを使用できるのは、Excel 2007 以降のバージョンのみです。
DisplayFormulaBar 、FormulaBarHeight 使用例
サンプルVBAソース 1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
Sub Sample01_DisplayFormulaBar() '数式バーを非表示 Application.DisplayFormulaBar = False End Sub Sub Sample02_DisplayFormulaBar() '数式バーを表示 Application.DisplayFormulaBar = True End Sub |
実行結果
Sub Sample01_DisplayFormulaBar() を実行(数式バーを非表示)
Sub Sample02_DisplayFormulaBar() を実行(数式バーを表示)
サンプルVBAソース 2
1 2 3 4 5 6 7 8 |
Sub Sample_FormulaBarHeight() '数式バーの高さを5行に設定 Application.FormulaBarHeight = 5 End Sub |