Efl.Ui.Scroll.Manager.bounce_enabled

Description

Bouncing behavior

When scrolling, the scroller may "bounce" when reaching the edge of the content object. This is a visual way to indicate the end has been reached. This is enabled by default for both axes. This API will determine if it's enabled for the given axis with the boolean parameters for each one.

Values

  • horiz - Horizontal bounce policy.
  • vert - Vertical bounce policy.

Overridden from Efl.Ui.Scrollable.bounce_enabled (get, set).

Signature

@property bounce_enabled @pure_virtual {
    get {}
    set {}
    values {
        horiz: bool;
        vert: bool;
    }
}

C signature

void efl_ui_scrollable_bounce_enabled_get(const Eo *obj, Eina_Bool *horiz, Eina_Bool *vert);
void efl_ui_scrollable_bounce_enabled_set(Eo *obj, Eina_Bool horiz, Eina_Bool vert);

Implemented by