Efl.Canvas.Text.visible_range_get

Description

Returns the currently visible range.

The given start and end cursor act like out-variables here, as they are set to the positions of the start and the end of the visible range in the text, respectively.

Signature

visible_range_get {
    params {
        @in start: ptr(Efl.Text_Cursor_Cursor);
        @in end: ptr(Efl.Text_Cursor_Cursor);
    }
    return: bool;
}

C signature

Eina_Bool efl_canvas_text_visible_range_get(Eo *obj, Efl_Text_Cursor_Cursor *start, Efl_Text_Cursor_Cursor *end);

Parameters

  • start (in) - Range start position
  • end (in) - Range end position

Implemented by