Enumerate windows fonts: Difference between revisions
From DataFlex Wiki
Jump to navigationJump to search
Enumerate available windows fonts |
Hsymington (talk | contribs) m Added to the How To category |
||
Line 27: | Line 27: | ||
From topic on forum: [http://support.dataaccess.com/Forums/showthread.php?44832-Enum-List-of-Windows-Fonts Enum List of Windows Fonts ?] | From topic on forum: [http://support.dataaccess.com/Forums/showthread.php?44832-Enum-List-of-Windows-Fonts Enum List of Windows Fonts ?] | ||
[[Category:How To]] |
Revision as of 12:07, 4 March 2020
How to enumerate windows fonts
The following code will use the enumerate_fonts method to enumerate all available windows fonts in a comboform. This method has been a hidden method in VDF since long and will become public starting from VDF16.1
Object oComboFormForceFontName is a ComboForm Set Size to 13 100 Set Location to 184 181 Set Label to "Font" Set Label_Justification_Mode to JMode_Top Set Label_Col_Offset to 0 Function USER_FONTNAME String facename Integer height Returns Integer If facename ne "" Begin Send Combo_Add_Item facename End End_Function // USER_FONTNAME Procedure LoadFonts Send Enumerate_Fonts "" End_Procedure Send LoadFonts End_Object
Links
From topic on forum: Enum List of Windows Fonts ?