How do I add scrollbars to a JTextArea?
|
|
|||||
|
|
|
Put it in a JScrollPane Edit: Here is a link for you: http://java.sun.com/docs/books/tutorial/uiswing/components/textarea.html |
||
|
|
|
|
As Fredrik mentions in his answer, the simple way to achieve this is to place the Just for the sake of completeness, the following is how it could be achieved:
Once the
Thank you kd304 for mentioning in the comments that one should add the The following articles from The Java Tutorials has more details: |
||||||
|
|
|
You first have to define a JTextArea as per usual:
Then you put a JScrollPane over the TextArea
The last line says that the vertical scrollbar will always be there. There is a similar command for horizontal. Otherwise, the scrollbar will only show up when it is needed (or never, if you use _SCROLLBAR_NEVER). I guess it's your call which way you want to use it. You can also add wordwrap to the JTextArea if you want to:Guide Here Good luck, P.S. Make sure you add the ScrollPane to the JPanel and not add the JTextArea. |
||
|
|
