Here in the topic, Applet to Demo TextArea.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
//----Program to Demo TextArea. import java.awt.*; import java.applet.*; import java.awt.event.*; /* <APPLET CODE="pandu96" WIDTH="600" HEIGHT="300"> </APPLET> */ public class Pandu96 extends Applet { TextArea txt; public void init() { txt = new TextArea(str, 20, 50, TextArea.SCROLLBARS_BOTH); add(txt); } } |
The Output of the Applet to Demo TextArea.
Comment below if you have queries related to the above topic, Applet to Demo TextArea.