StandardHeight プロパティ・StandardWidth プロパティ
StandardHeight プロパティは、ワークシート内のすべての行の標準(規定)の高さをポイント単位で返します(取得のみ可能)。
StandardWidth プロパティは、ワークシート内のすべての列の幅を返します。列幅の単位は、標準スタイルの 1 文字分の幅に相当します。プロポーショナルフォントでは、数字の 0 の幅が列幅の単位になります(取得・設定ともに可能)。
【書式】
<行の高さ>
Object.StandardHeight
<セルの列幅>
Object.StandardWidth
引数・戻り値
- object ・・・ 対象となる Worksheet オブジェクトを指定します。
StandardHeight プロパティ・StandardWidth プロパティ 使用例
サンプルVBAソース
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
Sub Sampla_Standard() Dim DefH, DefW, NewW DefH = ActiveSheet.StandardHeight DefW = ActiveSheet.StandardWidth ActiveSheet.StandardWidth = 15 NewW = ActiveSheet.StandardWidth Range("B1") = DefH Range("B2") = DefW Range("B3") = NewW End Sub |
実行結果
サンプルVBAソース実行前
実行後