FontStyle.Regular : Font « 2D « C# / CSharp Tutorial






using System;
using System.Drawing;
using System.Windows.Forms;
   
class FontNames: Form
{
     public static void Main()
     {
          Application.Run(new FontNames());
     }
     public FontNames()
     {
          Text = "Font Names";
          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)
     {    
          string[]    astrFonts = { "Courier New", "Arial", 
                                    "Times New Roman" };
          FontStyle[] afs       = { FontStyle.Regular, 
                                    FontStyle.Bold | FontStyle.Italic };
          Brush       brush     = new SolidBrush(clr);
          float       y         = 0;
   
          foreach (string strFont in astrFonts)
          {
               foreach (FontStyle fs in afs)
               {
                    Font font = new Font(strFont, 18, fs);
                    grfx.DrawString(strFont, font, brush, 0, y);
                    y += font.GetHeight(grfx);
               }
          }
     }
}








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