GraphicsEnvironment.preferProportionalFonts() has the following syntax.
public void preferProportionalFonts()
In the following code shows how to use GraphicsEnvironment.preferProportionalFonts() method.
import java.awt.GraphicsEnvironment; public class Main { public static void main(String[] args) { GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); ge.preferProportionalFonts(); } }