我在JTextPane
中加载了一个文本,并且每行自动获取最多可以使用的单词数。当我减小Font
大小的文本时,只需缩小并且所有行都是半空的。如何自动调整文本大小,以便无论我使用Font
的大小,每行都会被填充?
更改字体的代码是
JComboBox cb =(JComboBox)evt.getSource();
String Selection =(String)cb.getSelectedItem();
int n = Integer.parseInt(Selection);
Font font = new Font("Monospaced", Font.PLAIN, n);
editPane.setFont(font);