Get Font Height : Font « 2D « C# / CSharp Tutorial






using System;
using System.Drawing;
using System.Windows.Forms;
   
class TwentyFourPointScreenFonts: Form
{
     public static void Main()
     {
          Application.Run(new TwentyFourPointScreenFonts());
     }
     public TwentyFourPointScreenFonts()
     {
          ResizeRedraw = true; 
     }
     protected override void OnPaint(PaintEventArgs pea)
     {
          DoPage(pea.Graphics, ForeColor,ClientSize.Width, ClientSize.Height);
     }     
     protected void DoPage(Graphics grfx, Color clr, int cx, int cy)
     {
          Brush  brush     = new SolidBrush(clr);
          float  y         = 0;
          Font   font;
          string strFamily = "Times New Roman";
   
          font = new Font(strFamily, 24);
          grfx.DrawString("No GraphicsUnit, 24 points", font, brush, 0, y);
          y += font.GetHeight(grfx);
   
          font = new Font(strFamily, 24, GraphicsUnit.Point);
          grfx.DrawString("GraphicsUnit.Point, 24 units", font, brush, 0, y);


     }
}








27.16.Font
27.16.1.All in the font family: Ascent, Descent, Line spacing, HeightAll in the font family: Ascent, Descent, Line spacing, Height
27.16.2.Draw Font Families FormattedDraw Font Families Formatted
27.16.3.Draw Font FamiliesDraw Font Families
27.16.4.FontStyle.Regular
27.16.5.FontStyle.Bold
27.16.6.FontStyle.Italic
27.16.7.Get Font Height
27.16.8.Draw left justified text based on font size
27.16.9.Draw right justified text based on font size
27.16.10.Draw centered text