Java - 设置JEditorPane中选择的字体大小?

时间:2012-06-27 19:50:40

标签: java swing document font-size jeditorpane

Thanks to devsundar我发现了如何以JEditorPane粗体/下划线/斜体/其他方式制作所选文字。如何在Font Size

中设置所选文字的JEditorPane

我目前改变粗体/斜体/等的方法:

 AttributeSet aset = sc.addAttribute(SimpleAttributeSet.EMPTY,
    StyleConstants.StrikeThrough, true);

 pane.getStyledDocument().setCharacterAttributes(pane.getSelectionStart(),
    pane.getSelectionEnd(), aset, true);

1 个答案:

答案 0 :(得分:3)

有一个工作示例here使用StyledEditorKit.FontSizeActionStyledEditorKit中的相关类。

image