Efl.Canvas.Text.cursor_text_insert

Description

Adds text to the current cursor position and set the cursor to *after* the start of the text just added.

Signature

cursor_text_insert @pure_virtual {
    params {
        @in cur: ptr(Efl.Text_Cursor_Cursor);
        @in text: string;
    }
    return: int;
}

C signature

int efl_text_cursor_text_insert(Eo *obj, Efl_Text_Cursor_Cursor *cur, const char *text);

Parameters

  • cur (in) - Cursor object
  • text (in) - Text to append (UTF-8 format).

Implemented by