vote up 0 vote down star

I would like to create a dropdown in which the available Font names are displayed, in addition to the styles in which the font is available. Can anyone provide me with some information or code examples that I might be able to use in order to get started?

flag

0% accept rate
dont forget to accept an answer by clicking the 'V' left of an answer – PoweRoy Sep 21 at 12:54

2 Answers

vote up 3 vote down

Call FontFamily.Families to get the collection of font families on the system, or FontFamily.GetFamilies(Graphics) to get the families for a given graphics context. Then for each font call FontFamily.IsStyleAvailable to determine support for bold, italic, etc.

link|flag
i want exact coding for that i don't have any idea regarding this code – Yagnesh84 Sep 21 at 12:57
vote up 2 vote down
foreach (FontFamily fontFamily in FontFamily.Families)
{
    if (fontFamily.IsStyleAvailable(FontStyle.Regular))
    {
        fontComboBox.Items.Add(fontFamily.Name + " (Regular)");
    }

    if (fontFamily.IsStyleAvailable(FontStyle.Bold))
    {
        fontComboBox.Items.Add(fontFamily.Name + " (Bold)");
    }

    if (fontFamily.IsStyleAvailable(FontStyle.Italic))
    {
        fontComboBox.Items.Add(fontFamily.Name + " (Italic)");
    }

    if (fontFamily.IsStyleAvailable(FontStyle.Underline))
    {
        fontComboBox.Items.Add(fontFamily.Name + " (Underline)");
    }

    if (fontFamily.IsStyleAvailable(FontStyle.Strikeout))
    {
        fontComboBox.Items.Add(fontFamily.Name + " (Strikeout)");
    }
}
link|flag
N.B. This doesn't take into account combined styles, like Bold+Underline. – ICR Sep 21 at 13:22

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.