Text.insertText

Inserts text into the widget at a specified line and character index.

class Text
insertText
(
this T
)
(
int line
,,
string text
)

Parameters

line int

The line at which to insert the text. Indexes start at 1.

character int

The character at which to insert the text. Indexes start at 0.

text string

The text to insert.

Return Value

Type: auto

This widget to aid method chaining.

Meta