"insert"

Inserts a text at the current cursor position.

Synopsis

void insert(string text);

Parameters

Parameter Description
text The text to be added.

Description

Inserts a text at the current cursor position.

Example

Inserts a text at the current cursor position.

main()

{

TEXT_EDIT1.insert("Text");

}

Assignment

textEdit

See also

"insertAt"