1

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.

the_farmer
  • 649
  • 1
  • 8
  • 23
  • http://stackoverflow.com/questions/15254409/changing-the-font-family-and-size-for-a-winforms-app – Ramesh Rajendran Oct 27 '13 at 11:04
  • May be this could help you: http://stackoverflow.com/questions/103725/is-there-a-way-to-programatically-determine-if-a-font-file-has-a-specific-unicod – Rezoan Oct 27 '13 at 11:28
  • also see this: http://stackoverflow.com/questions/5604855/how-to-determine-which-fonts-contain-a-specific-character – Rezoan Oct 27 '13 at 11:29
  • if you consider windows 8 app. then see this: http://code.msdn.microsoft.com/windowsapps/Language-font-mapping-919f08d4 – Rezoan Oct 27 '13 at 11:30

0 Answers0