Efl.Pack_Table.pack_table

Description

Pack object at a given location in the table.

When this container is deleted, it will request deletion of the given subobj. Use Efl.Pack.unpack to remove subobj from this container without deleting it.

Since 1.23

Signature

pack_table @pure_virtual {
    params {
        @in subobj: Efl.Gfx.Entity;
        @in col: int;
        @in row: int;
        @in colspan: int @optional;
        @in rowspan: int @optional;
    }
    return: bool;
}

C signature

Eina_Bool efl_pack_table(Eo *obj, Efl_Gfx_Entity *subobj, int col, int row, int colspan, int rowspan);

Parameters

Implemented by