Draw right justified text based on font size : Font « 2D « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Windows.Forms;



  class Form1 : Form
  {
    public Form1()
    {
      SetStyle(ControlStyles.Opaque, true);
      Bounds = new Rectangle(0, 0, 500, 300);
    }

    protected override void OnPaint(PaintEventArgs e)
    {
      Graphics g = e.Graphics;
      int y = 0;

      g.FillRectangle(Brushes.White, ClientRectangle);

      Font aFont = new Font("Arial", 16, FontStyle.Bold | FontStyle.Italic);
      Rectangle rect = new Rectangle(0, y, 400, aFont.Height);
      g.DrawRectangle(Pens.Blue, rect);
      StringFormat sf = new StringFormat();
      sf.Alignment = StringAlignment.Far;
      g.DrawString("This text is right justified.", aFont, Brushes.Blue,rect, sf);
      y += aFont.Height + 20;
      aFont.Dispose();

    }
  

    [STAThread]
    static void Main()
    {
      Application.EnableVisualStyles();
      Application.Run(new Form1());
    }
  }








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