openidsucks
openidsucks

Reputation: 245

removing the vertical scroll bar in a jscrollpane?

Is it possible to remove the vertical scroll bar in a JScrollPane?

Upvotes: 1

Views: 2926

Answers (1)

Nick Craver
Nick Craver

Reputation: 630349

Try something like this:

JScrollPane.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_NEVER);

Upvotes: 5

Related Questions