Get all system installed font : Font « GUI Windows Form « C# / C Sharp






Get all system installed font

Get all system installed font

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


  public class Test{
    static void Main() 
    {
      InstalledFontCollection fonts = new InstalledFontCollection();
      for(int i = 0; i < fonts.Families.Length; i++)
      {
        Console.WriteLine(fonts.Families[i].Name);
      }
    }
  }

           
       








Related examples in the same category

1.All font properties
2.new Font("Times New Roman", 10, FontStyle.Italic)
3.new Font(strFont, fSize)
4.new Font(fontRegular, FontStyle.Italic);
5.Text on Baseline
6.Font: SizeInPoints
7.Font with different size
8.Font: GetHeight
9.System Fonts: Icon Title FontSystem Fonts: Icon Title Font
10.Load all system installed fontsLoad all system installed fonts
11.Timer based animation for fontTimer based animation for font
12.Font listFont list