vote up 4 vote down star

I'm using JScrollPane to allow scrolling in a JFrame that has a text component that's serving as a text editor. What I want to do, after setting the text in this editor, is have it scroll back up to the top, so you can see what's at the beginning of the file.

Does anyone know how to do this?

flag

3 Answers

vote up 4 vote down

Use JComponent.scrollRectToVisible()

If you need more info, here's an article

link|flag
vote up 1 vote down

You can try this:

 scrollPane.getViewport().setViewPosition(new Point(0,0));

According to the JavaDocs setViewPosition() behaves like this:

Sets the view coordinates that appear in the upper left hand corner of the viewport, does nothing if there's no view.

link|flag
vote up 5 vote down

Calling setCaretPosition(0) on your text component will cause it to scroll to the top.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.