My JEditorPane automatically wraps words; I don't want that. All I want is a horizontal bar to appear that allows the user to write as much as desired. How can I do that? I have tried several methods. I have overridden the getScrollableTracksViewportWidth(), but that didn't help. Does any one know how I can turn off the word wrap?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
Try this http://java-sl.com/wrap.html |
|||
|
|
|
A quick google search lead me to this page, which implements it by subclassing the text pane and overriding the
|
|||
|
|
JEditorPane, you could use aJTextAreawhich suppors asetLineWrap()method. – a_horse_with_no_name Jan 22 '12 at 12:44