質問

How to Disable automatic scrolling of JtextArea.

JtextArea1.setColumns (100);
JtextArea1.setLineWrap (true);
JtextArea1.setWrapStyleWord (false);
役に立ちましたか?

解決

Maybe this helps you:

JTextArea textArea = new JTextArea();
DefaultCaret caret = (DefaultCaret)textArea.getCaret();
caret.setUpdatePolicy(DefaultCaret.NEVER_UPDATE);

Found this here

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top