本文介绍了将JTextArea滚动到插入符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将JTextArea的当前滚动视图向下移动,以使插入标记出现在JTextArea的顶部?谢谢.
How can I move the current scroll view of a JTextArea down so that the caret appears at the top of the JTextArea? Thanks.
推荐答案
您可以这样做:
Point pt = textArea.getCaret().getMagicCaretPosition();
Rectangle rect = new Rect(pt, new Dimension(1, 10));
textArea.scrollRectToVisible(rect);
也可以使用getDocument
进行更好的选择.
One can also use the getDocument
for a better selection.
这篇关于将JTextArea滚动到插入符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!