TextAreas

TextAreas.java
**************
import java.applet.Applet;
import java.awt.*;

/././././././,/././././
public class TextAreas extends Applet {
  public void init() {
    setBackground(Color.lightGray);
    add(new TextArea(3, 10));
    add(new TextArea("Some\nInitial\nText", 3, 10));
  }
}

Permanent link to this article: http://bangla.sitestree.com/textareas/

Leave a Reply