Java Swing TextArea scroll bar and get focus

Source: Internet
Author: User

Java Swing TextArea scroll bar and get focus

JTextArea text = new JTextArea (); text. setLineWrap (true); // you do not need to set the horizontal scroll bar JScrollPane scroll = new JScrollPane (text). // set the horizontal and vertical scroll bars to automatically display scroll. setHorizontalScrollBarPolicy (JScrollPane. HORIZONTAL_SCROLLBAR_AS_NEEDED); scroll. setVerticalScrollBarPolicy (JScrollPane. VERTICAL_SCROLLBAR_AS_NEEDED); // you can specify that scroll always appears when the horizontal and vertical scroll bars are set respectively. setHorizontalScrollBarPolicy (JScrollPane. HORIZONTAL_SCROLLBAR_ALWAYS); scroll. setVerticalScrollBarPolicy (JScrollPane. VERTICAL_SCROLLBAR_ALWAYS); // sets the horizontal and vertical scroll bars to always hide scroll. setHorizontalScrollBarPolicy (JScrollPane. HORIZONTAL_SCROLLBAR_NEVER); scroll. setVerticalScrollBarPolicy (JScrollPane. VERTICAL_SCROLLBAR_NEVER); Container container = mynote. getContentPane (); container. add (scroll, BorderLayout. EAST); // Note: after adding the scoll scroll bar to the form, you do not need to add the scoll textarea. Otherwise, myframe cannot be displayed. add (scroll );




// Obtain the focus of the last row of TextArea
JTextarea textarea = new JTextarea ();
Textarea. append ("dfasfsadfasfd ");
Textarea. setCaretPosition (textarea. getText (). length ());

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.