Table of Contents

Efl.Ui.Table.content_align

Description

This property determines how contents will be aligned within a container if there is unused space.

It is different than the Efl.Gfx.Hint.hint_align property in that it affects the position of all the contents within the container. For example, if a box widget has extra space on the horizontal axis, this property can be used to align the box's contents to the left or the right side.

See also Efl.Gfx.Hint.hint_align.

Since 1.23

Values

Overridden from Efl.Gfx.Arrangement.content_align (get, set).

Signature

@property content_align @pure_virtual {
    get {}
    set {}
    values {
        align_horiz: double (0.500000);
        align_vert: double (0.500000);
    }
}

C signature

void efl_gfx_arrangement_content_align_get(const Eo *obj, double *align_horiz, double *align_vert);
void efl_gfx_arrangement_content_align_set(Eo *obj, double align_horiz, double align_vert);

Implemented by