次の方法で共有


FontFamily.GetEmHeight メソッド

指定のスタイルの em 四角形の高さをフォント デザイン単位で取得します。フォント メトリックについては、「Obtaining Font Metrics」を参照してください。

Public Function GetEmHeight( _
   ByVal style As FontStyle _) As Integer
[C#]
public int GetEmHeight(FontStylestyle);
[C++]
public: int GetEmHeight(FontStylestyle);
[JScript]
public function GetEmHeight(
   style : FontStyle) : int;

パラメータ

  • style
    em の高さの取得対象となる FontStyle 列挙体。

戻り値

em 四角形の高さ。

使用例

[Visual Basic, C#] 次の例は、Windows フォームでの使用を意図してデザインされており、 Paint イベント ハンドラのパラメータである PaintEventArgs e が必要です。このコードは次のアクションを実行します。

  • FontFamily オブジェクトを作成します。
  • そのフォント ファミリの em 四角形の高さを取得します。
  • em の高さの値をテキストで画面に描画します。
 
Public Sub GetEmHeight_Example(e As PaintEventArgs)
' Create a FontFamily object.
Dim emFontFamily As New FontFamily("arial")
' Get the em height of the font family in design units.
Dim emHeight As Integer = _
emFontFamily.GetEmHeight(FontStyle.Regular)
' Draw the result as a string to the screen.
e.Graphics.DrawString("emFontFamily.GetEmHeight() returns " & _
emHeight.ToString() + ".", New Font(emFontFamily, 16), _
Brushes.Black, New PointF(0, 0))
End Sub
        
[C#] 
public void GetEmHeight_Example(PaintEventArgs e)
{
// Create a FontFamily object.
FontFamily emFontFamily = new FontFamily("arial");
// Get the em height of the font family in design units.
int emHeight = emFontFamily.GetEmHeight(FontStyle.Regular);
// Draw the result as a string to the screen.
e.Graphics.DrawString(
"emFontFamily.GetEmHeight() returns " + emHeight.ToString() + ".",
new Font(emFontFamily, 16),
Brushes.Black,
new PointF(0, 0));
        

[Visual Basic, C#] }

[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 ファミリ

参照

FontFamily クラス | FontFamily メンバ | System.Drawing 名前空間