Java – stop horizontal scrolling in jtextarea
•
Java
I want to add a jtextarea to an application Typically, textarea contains a lot of content and displays horizontal and vertical scrollbars when you run the application I want to delete horizontal scrolling; I found it possible
Solution
Try this:
yourJTextArea.setLineWrap(true); yourJTextArea.setWrapStyleWord(true);
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码