This class is a collection of storing all the installed fonts and enabled you to populate them via iteration.
To get all the installed fonts ,we need first add reference to System.Drawing and then import it in our project with using statement:
using
System.Drawing.Text;
This will let us use InstalledFontCollection class:
Now lets build a sample.
Create a windows forms,add a listbox and then add these codes:
using
(InstalledFontCollection col =
new
InstalledFontCollection())
{
foreach
(FontFamily fa
in
col.Families)
{
listBox1.Items.Add(fa.Name);
}
}
After we run,we'll be populating them:
Hope that helps!