Insert Method (AWTTextArea)

Class

AWTTextArea.

Action

Inserts the specified text at the specified position.

Syntax

C#
textArea.Insert(text, pos)
VB
textArea.Insert(text, pos)
Variable Description
text The text to insert. String.
pos The position at which to insert. The value is zero-based. Integer.

Examples

VB

colorsTextArea.Insert("yellow", 16)