I see examples of setting the font to SanSerif, is this a java font, or something else?
Is there a list of supported fonts?
Thanks.
supported fonts list?
Re: supported fonts list?
Hi Phillip,
"SansSerif" is one of the Java logical font names, it is guaranteed to be present on all JVMs (actually I think it gets mapped to a real font like "Helvetica" or "Arial"). If you stick to logical font names, your code will work across platforms. Other logical font names include "Serif" and "Monospaced".
Regards,
DG
"SansSerif" is one of the Java logical font names, it is guaranteed to be present on all JVMs (actually I think it gets mapped to a real font like "Helvetica" or "Arial"). If you stick to logical font names, your code will work across platforms. Other logical font names include "Serif" and "Monospaced".
Regards,
DG