Search code examples
javajscrollpane

removing the vertical scroll bar in a jscrollpane?


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


Solution

  • Try something like this:

    JScrollPane.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_NEVER);