Efl.Container_Model.child_property_add

Description

Adds the given property to child objects and supply the values.

Each item will represent the value of the given property in the respective child within the data model.

New children objects are allocated as necessary.

Value type is required for compatibility with the Efl.Model API.

Signature

child_property_add {
    params {
        @in name: string;
        @in type: ptr(const(Eina.Value_Type));
        @in values: iterator<const(void_ptr)>;
    }
    return: bool;
}

C signature

Eina_Bool efl_container_model_child_property_add(Eo *obj, const char *name, const Eina_Value_Type *type, Eina_Iterator *values);

Parameters

  • name (in) - Property name
  • type (in) - Property type
  • values (in) - Values to be added

Implemented by