FontFamily.GetLineSpacing メソッド
指定したスタイルの FontFamily オブジェクトの行間をデザイン単位で返します。行間とは、2 つの連続するテキスト行のベース ライン間の垂直距離です。フォント メトリックについては、「Obtaining Font Metrics」を参照してください。
Public Function GetLineSpacing( _
ByVal style As FontStyle _) As Integer
[C#]
public int GetLineSpacing(FontStylestyle);
[C++]
public: int GetLineSpacing(FontStylestyle);
[JScript]
public function GetLineSpacing(
style : FontStyle) : int;
パラメータ
- style
適用する FontStyle 列挙体。
戻り値
連続する 2 つのテキスト行の間隔。
使用例
[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。
- FontFamily オブジェクトを作成します。
- フォント ファミリの行間を取得します。
- 行間の値をテキストで画面に描画します。
Public Sub GetLineSpacing_Example(e As PaintEventArgs)
' Create a FontFamily object.
Dim myFontFamily As New FontFamily("Arial")
' Get the line spacing for myFontFamily.
Dim lineSpacing As Integer = _
myFontFamily.GetLineSpacing(FontStyle.Regular)
' Draw the value of lineSpacing to the screen as a string.
e.Graphics.DrawString("lineSpacing = " & lineSpacing.ToString(), _
New Font(myFontFamily, 16), Brushes.Black, New PointF(0, 0))
End Sub
[C#]
public void GetLineSpacing_Example(PaintEventArgs e)
{
// Create a FontFamily object.
FontFamily myFontFamily = new FontFamily("Arial");
// Get the line spacing for myFontFamily.
int lineSpacing = myFontFamily.GetLineSpacing(FontStyle.Regular);
// Draw the value of lineSpacing to the screen as a string.
e.Graphics.DrawString(
"lineSpacing = " + lineSpacing.ToString(),
new Font(myFontFamily, 16),
Brushes.Black,
new PointF(0, 0));
}
[C++, JScript] C++ および JScript のサンプルはありません。Visual Basic および C# のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ