Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JScrollPane with scroll bar to left

Tags:

java

swing

I need to place a scroll bar to the left of the contents in my JScrollPane. Can it be done without a separate JScrollBar component? Perhaps simply by setting some alignment?

like image 749
Jonas Byström Avatar asked Aug 21 '09 12:08

Jonas Byström


1 Answers

Using trial and error I found that

JScrollPane.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);

worked like a charm.

like image 119
Jonas Byström Avatar answered Oct 02 '22 07:10

Jonas Byström