list of font available ?

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

how to get the list of font available ?
FontFamily doesn't support GetFamilies() on CF !
any interop function to advise me ?
 
mmhh...
beside I can't find the source for the callback library.
I was thinking to simply use a list of standart font instead.

anyidea of what could be such a list ?
I was thinking to:
Arial, Courier New, Times New Roman
what about that ?

in fact I was thinking to
FontFamily.GenericMonospace,
FontFamily.GenericSansSerif,
FontFamily.GenericSerif

but there is no name property for the font family in CF ;-(
 
new Font(FontFamily.GenericMonospace, 1, FontStyle.Regular).Name
gives me the name :-)

and I use the three default font !
easy !
 
mmhhh...

new Font(FontFamily.GenericSerif, 4, FontStyle.Regular).Name

gives me an empty string
so does the other static FontFamily object ...
any idea ?
 
Back
Top