Back Previous Next


Linguist graphics package - textarea

Syntax:

   textarea {name} {elements}

Keyword handler:

   net.eclecity.linguist.graphics.keyword.GraphicsKTextarea.class

Runtime handler(s):

   net.eclecity.linguist.graphics.handler.GraphicsHTextarea.class

Function:

Declares a textarea variable or an array of textareas. These are multiline editable text boxes based on javax.swing.JTextArea. See also create and show.

A textarea can be treated like a string variable - i.e. like a buffer. When you put text into it the new contents appear on screen immediately (if the component is visible).

Example(s):

   textarea MessageBox
   textarea TextAreas 8


Back Previous Next