2

How to Disable automatic scrolling of JtextArea.

JtextArea1.setColumns (100);
JtextArea1.setLineWrap (true);
JtextArea1.setWrapStyleWord (false);
mKorbel
  • 109,525
  • 20
  • 134
  • 319
Code Hungry
  • 3,930
  • 22
  • 67
  • 95

1 Answers1

5

Maybe this helps you:

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

Found this here

Community
  • 1
  • 1
Simulant
  • 19,190
  • 8
  • 63
  • 98