JTextPaneの文字間隔(フォントトラッキング)を変更する必要がありますが、機能させることができません。
JTextAreaを使用している場合、次のことができます。
Font font = new Font("Courier New", Font.PLAIN, 10);
HashMap <TextAttribute, Object> attrs = new HashMap<TextAttribute, Object>();
attrs.put(TextAttribute.TRACKING, -0.1);
font = font.deriveFont(attrs);
textArea.setFont(font);
ただし、行間隔を変更する必要があるため、JTextPaneを使用して次のことを行う必要があります。
textPane.setFont(font)
JTextAreaで行ったように機能しません。私が試したもう一つのことは:
MutableAttributeSet set = new SimpleAttributeSet();
StyleConstants.setLineSpacing(set, -0.2);
StyleConstants.setFontFamily(set,"Courier New");
StyleConstants.setFontSize(set, 10);
set.addAttribute(TextAttribute.TRACKING, -0.1);
ta.setParagraphAttributes(set, true);
ただし、追跡属性は機能しません。
私は何が間違っているのですか?