Efl.Canvas.Object.repeat_events

Description

Whether an Evas object is to repeat events to objects below it.

If repeat is true, it will make events on obj to also be repeated for the next lower object in the objects' stack (see see Efl.Gfx.Stack.below).

If repeat is false, events occurring on obj will be processed only on it.

Since 1.22

Values

  • repeat - Whether obj is to repeat events (true) or not (false).

Signature

@property repeat_events {
    get {}
    set {}
    values {
        repeat: bool;
    }
}

C signature

Eina_Bool efl_canvas_object_repeat_events_get(const Eo *obj);
void efl_canvas_object_repeat_events_set(Eo *obj, Eina_Bool repeat);

Implemented by