FontFamily.GetCellDescent メソッドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > FontFamily.GetCellDescent メソッドの意味・解説 

FontFamily.GetCellDescent メソッド

指定したスタイルの FontFamily のセル ディセントデザイン単位返します

名前空間: System.Drawing
アセンブリ: System.Drawing (system.drawing.dll 内)
構文構文

Public Function GetCellDescent ( _
    style As FontStyle _
) As Integer
Dim instance As FontFamily
Dim style As FontStyle
Dim returnValue As Integer

returnValue = instance.GetCellDescent(style)
public int GetCellDescent (
    FontStyle style
)
public:
int GetCellDescent (
    FontStyle style
)
public int GetCellDescent (
    FontStyle style
)
public function GetCellDescent (
    style : FontStyle
) : int

パラメータ

style

フォントスタイル情報格納されている FontStyle。

戻り値
指定した FontStyle使用するこの FontFamilyセル ディセント メトリック

使用例使用例

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

Public Sub GetCellDescent_Example(ByVal
 e As PaintEventArgs)

    ' Create a FontFamily object.
    Dim descentFontFamily As New
 FontFamily("arial")

    ' Get the cell descent of the font family in design units.
    Dim cellDescent As Integer
 = _
    descentFontFamily.GetCellDescent(FontStyle.Regular)

    ' Draw the result as a string to the screen.
    e.Graphics.DrawString("descentFontFamily.GetCellDescent()
 returns " _
    & cellDescent.ToString() & ".", New
 Font(descentFontFamily, 16), _
    Brushes.Black, New PointF(0, 0))
End Sub
public void GetCellDescent_Example(PaintEventArgs
 e)
{
    // Create a FontFamily object.
    FontFamily descentFontFamily = new FontFamily("arial");
             
    // Get the cell descent of the font family in design units.
    int cellDescent = descentFontFamily.GetCellDescent(FontStyle.Regular);
             
    // Draw the result as a string to the screen.
    e.Graphics.DrawString(
        "descentFontFamily.GetCellDescent() returns " + cellDescent.ToString()
 + ".",
        new Font(descentFontFamily, 16),
        Brushes.Black,
        new PointF(0, 0));
}
public:
   void GetCellDescent_Example( PaintEventArgs^ e )
   {
      // Create a FontFamily object.
      FontFamily^ descentFontFamily = gcnew FontFamily( "arial" );

      // Get the cell descent of the font family in design units.
      int cellDescent = descentFontFamily->GetCellDescent(
 FontStyle::Regular );

      // Draw the result as a string to the screen.
      e->Graphics->DrawString( String::Format( "descentFontFamily.GetCellDescent()
 returns {0}.", cellDescent ),
            gcnew System::Drawing::Font( descentFontFamily,16 ), Brushes::Black,
 PointF(0,0) );
   }
public void GetCellDescent_Example(PaintEventArgs
 e)
{
    // Create a FontFamily object.
    FontFamily descentFontFamily = new FontFamily("arial");

    // Get the cell descent of the font family in design units.
    int cellDescent = descentFontFamily.GetCellDescent(FontStyle.Regular);

    // Draw the result as a string to the screen.
    e.get_Graphics().DrawString(
        "descentFontFamily.GetCellDescent() returns "  
        +  System.Convert.ToString(cellDescent) + ".", 
        new Font(descentFontFamily, 16), 
        Brushes.get_Black(), new PointF(0, 0));
} //GetCellDescent_Example
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

FontFamily.GetCellDescent メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



FontFamily.GetCellDescent メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS