Reputation: 245
Is it possible to remove the vertical scroll bar in a JScrollPane?
Upvotes: 1
Views: 2926
Reputation: 630349
Try something like this:
JScrollPane.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_NEVER);
Upvotes: 5