B4J Question List available fonts

ThRuST

Well-Known Member
Licensed User
Longtime User
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?
 

ThRuST

Well-Known Member
Licensed User
Longtime User
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
Top