2

How to Disable automatic scrolling of JtextArea.

JtextArea1.setColumns (100);
JtextArea1.setLineWrap (true);
JtextArea1.setWrapStyleWord (false);
mKorbel
  • 109,107
  • 18
  • 130
  • 305
Code Hungry
  • 3,750
  • 22
  • 64
  • 92

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
  • 18,114
  • 7
  • 59
  • 94