JTextArea 中的行间距
我当前的 JTextArea 实例的行间距似乎约为 1 或 1.5。谁能告诉我如何更改 JTextArea 实例中的行间距?
It seems my current JTextArea instance is having line-spcing about 1 or 1.5. Can anybody tell me how to change the line-spacing in JTextArea instance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
进行谷歌搜索建议您应该使用
JTextPane
,特别是位于此处。获取您需要的
AttributeSet
的方法如下:现在只需将
set
传入setParagraphAttributes
方法即可。希望这有帮助。
Doing a google search suggests you should be using
JTextPane
and in particular thesetParagraphAttributes
located here.The way to get the
AttributeSet
you need is as follows:Now just pass in
set
to thesetParagraphAttributes
method.Hope this helps.
不要忘记放在
前面
,否则它将不起作用!
dont forget to put
before
or it will not work!