EditableText.insertText

Insert text at a given position.

class EditableText
void
insertText
(
string string
,
int length
,
ref int position
)

Parameters

string string

the text to insert

length int

the length of text to insert, in bytes

position int

The caller initializes this to the position at which to insert the text. After the call it points at the position after the newly inserted text.

Meta