Text.connectTextInsert

gulong connectTextInsert(T)(string detail = null, T callback, Flag!"After" after = No.After)

Connect to TextInsert signal.

The "text-insert" signal is emitted when a new text is inserted. If the signal was not triggered by the user (e.g. typing or pasting text), the "system" detail should be included.

Parameters

detailSignal detail or null (default)
callbacksignal callback delegate or function to connect void callback(int arg1, int arg2, string arg3, atk.text.Text text) arg1 The position (character offset) of the insertion. (optional) arg2 The length (in characters) of text inserted. (optional) arg3 The new text inserted (optional) text the instance the signal is connected to (optional)
afterYes.After to execute callback after default handler, No.After to execute before (default)

Returns

Signal ID