Efl.Pack_Table.table_contents_get

Description

Returns all objects at a given position in this table.

Since 1.23

Signature

table_contents_get @pure_virtual {
    params {
        @in col: int;
        @in row: int;
        @in below: bool @optional;
    }
    return: iterator<Efl.Gfx.Entity>;
}

C signature

Eina_Iterator *efl_pack_table_contents_get(Eo *obj, int col, int row, Eina_Bool below);

Parameters

  • col (in) - Column number
  • row (in) - Row number
  • below (in) - If true get objects spanning over this cell.

Implemented by