Enable word-wrapping : TextArea « Swing JFC « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Swing JFC » TextArea 




Enable word-wrapping
  

import javax.swing.JTextArea;

public class Main {
  public static void main(String[] argv) {
    JTextArea c = new JTextArea();

    c.setLineWrap(true);

    c.setWrapStyleWord(true);

  }
}

   
    
  














Related examples in the same category
1.Creating a JTextArea Component
2.Insert some text after the 5th character
3.Delete the first 5 characters
4.Enumerating the Lines in a JTextArea Component
5.Modifying Text in a JTextArea Component
6.Fancier custom caret classFancier custom caret class
7.Show line start end offsets in a JTextAreaShow line start end offsets in a JTextArea
8.A TransferHandler and JTextArea that will accept any drop at allA TransferHandler and JTextArea that will accept any drop at all
9.Drop: TextAreaDrop: TextArea
10.Drag and drop: TextArea 2Drag and drop: TextArea 2
11.Caret SampleCaret Sample
12.TextArea Background ImageTextArea Background Image
13.Cut Paste SampleCut Paste Sample
14.TextArea SampleTextArea Sample
15.TextArea ExampleTextArea Example
16.Wrap textareaWrap textarea
17.Replace text in text areaReplace text in text area
18.TextField ExampleTextField Example
19.TextArea Elements 2TextArea Elements 2
20.TextArea ElementsTextArea Elements
21.TextArea Views 2TextArea Views 2
22.TextArea Views 3TextArea Views 3
23.TextArea with UnicodeTextArea with Unicode
24.Internationalized Graphical User Interfaces: unicode cut and pasteInternationalized Graphical User Interfaces: unicode cut and paste
25.Text Component Demo 2Text Component Demo 2
26.Text Component DemoText Component Demo
27.Text Input DemoText Input Demo
28.Text Components Sampler DemoText Components Sampler Demo
29.TextArea Share ModelTextArea Share Model
30.Set the start of the selection; ignored if new start is < end
31.Set the end of the selection; ignored if new end is > start
32.Set the caret color
33.Simple Editor DemoSimple Editor Demo
34.Setting the Tab Size of a JTextArea Component
35.Moving the Focus with the TAB Key in a JTextArea Component
36.Enabling Word-Wrapping and Line-Wrapping in a JTextArea Component
37.Append some text to JTextArea
38.Replace the first 3 characters with some text
39.Enumerate the content elements with a ElementIterator
40.Highlight of discontinous string
41.Copy selected text from one text area to another
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.