Page 1 of 1

Which Fonts does JVx use?

PostPosted: Mon Jan 14, 2019 11:51 am
by johnit
Is there a list of Fonts for a JVx application?

It's important for me to know which Fonts are used to avoid possible license issues.

Re: Which Fonts does JVx use?

PostPosted: Mon Jan 14, 2019 11:54 am
by Support@SIB
JVx doesn't use specific fonts, only default Java fonts, see Java Font configuration.

To get a list of all available default font family names, simply use the factory and call:

Code: Select all
factory.getAvailableFontFamilyNames();

In our Swing UI implementation, the Graphics environment will be used to determine the available fonts:

Code: Select all
GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames()