Efl.Ui.Relative_Layout.relation_right

Description

Specifies the right side edge of the child relative to the target. By default, target is parent and relative is 1.0.

Keys

  • child - The child to specify relation.

Values

  • target - The relative target.
  • relative - The ratio between left and right of the target, ranging from 0.0 to 1.0.

Signature

@property relation_right {
    get {}
    set {}
    keys {
        child: Efl.Object;
    }
    values {
        target: Efl.Object;
        relative: double;
    }
}

C signature

void efl_ui_relative_layout_relation_right_get(const Eo *obj, Efl_Object *child, Efl_Object **target, double *relative);
void efl_ui_relative_layout_relation_right_set(Eo *obj, Efl_Object *child, Efl_Object *target, double relative);

Implemented by