ThRuST Well-Known Member Licensed User Longtime User Feb 3, 2017 #1 How can I list all available fonts that is installed in the system, let's say I have a combobox called comboboxfonts, can the font designs also be visible in the font names?
How can I list all available fonts that is installed in the system, let's say I have a combobox called comboboxfonts, can the font designs also be visible in the font names?
I inakigarm Well-Known Member Licensed User Longtime User Feb 3, 2017 #2 Try B4X: Log(fx.GetAllFontFamilies) It returns a list that can be added to the combobox Upvote 0
ThRuST Well-Known Member Licensed User Longtime User Feb 3, 2017 #3 Thanks inakigarm. However Steve05 taught me to do this, it lists all the names of available fonts B4X: For Each familyname As String In fx.GetAllFontFamilies ComboboxFonts.Items.Add(familyname) Next Upvote 0
Thanks inakigarm. However Steve05 taught me to do this, it lists all the names of available fonts B4X: For Each familyname As String In fx.GetAllFontFamilies ComboboxFonts.Items.Add(familyname) Next