scrollbar : Java Glossary

home page S words local find full screen, hide local find menu Google search web for more information on this topic jump to foot of page translate this page with Babelfish punctuation 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z (all) ©1996-2010 Roedy Green, Canadian Mind Products
scrollbar

region on the screen the user can drag a thumbtab to scroll vertically or horizontally or both. In AWT you get them by adding your Component to a ScrollPane then adding the ScrollPane to your Container. In Swing you use JScrollPane instead. JScrollPane works with a ScrollPaneLayout which as a side effect decides when the scrollbars are needed and which part of the image to display. To get the JScrollPane to notice that your Component has changed size, you must call the Component’s revalidate method. If scroll bars fail to appear, make sure your getPreferredSize, getMinimumSize and getMaximumSize methods on your extended JPanel inside the ScrollPane are producing the size of the full image, not just the visible part.

with JScrollPane, if you don’t specify the scrolling policy, this is the default:

// note vertical comes first
new JScrollPane ( component,
                  VERTICAL_SCROLLBAR_AS_NEEDED,
                  HORIZONAL_SCROLLBAR_AS_NEEDED );
You can control what is visible with by getting the horizonal or vertical JScrollBar and using setValue.

CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/scrollbar.html J:\mindprod\jgloss\scrollbar.html
CMP logofeedback Please email your feedback for publication, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.191.85]
You are visitor number 15,648.