Efl.Pack_Linear.pack_end

Description

Append object at the end of this container.

This is the same as Efl.Pack_Linear.pack_at with a -1 index.

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_end @pure_virtual {
    params {
        @in subobj: Efl.Gfx.Entity;
    }
    return: bool;
}

C signature

Eina_Bool efl_pack_end(Eo *obj, Efl_Gfx_Entity *subobj);

Parameters

  • subobj (in) - Object to pack at the end.

Implemented by