This how you get all the font families list:
List<string> fonts = new List<string>();
foreach (FontFamily font in FontFamily.Families)
{
fonts.Add(font.Name);
}
My site let users to write text with their own language. Let say user pick arabic/hebrew language,I want to show him only the font family list availble for his language. for example : 'Comic Sans MS' not support arabic/hebrew language.
Thanks.