You are here: Home / Topics / Program to use TextArea AWT control in Java

Program to use TextArea AWT control in Java

Filed under: Java on 2023-10-25 06:40:28

//  Program to use TextArea AWT control.

import java.awt.*;
import java.applet.*;

/*
<applet code="TextAreaDemo" width="300" height="200">
</applet>
*/

public class TextAreaDemo extends Applet 
{
public void init() 
{
 String val =
  "Java SE 6 is the latest version of the most\n" +
  "widely-used computer language for Internet programming.\n" +
  "Building on a rich heritage, Java has advanced both\n" +
  "the art and science of computer language design.\n\n" +
  "One of the reasons for Java's ongoing success is its\n" +
  "constant, steady rate of evolution. Java has never stood\n" +
  "still. Instead, Java has consistently adapted to the\n" +
  "rapidly changing landscape of the networked world.\n" +
  "Moreover, Java has often led the way, charting the\n" +
  "course for others to follow.";
 TextArea text = new TextArea(val, 10, 30);
 add(text);
}
}

About Author:
J
Java     View Profile
Hi, I am using MCQ Buddy. I love to share content on this website.