Description

Type that controls when scrollbars should appear.

See also Elm.Interface_Scrollable.policy.set.

Fields

  • auto - Show scrollbars as needed
  • on - Always show scrollbars
  • off - Never show scrollbars
  • last - Sentinel value to indicate last enum field during iteration

Signature

enum Elm.Code_Widget_Scroller_Policy {
    auto: 0,
    on,
    off,
    last
}

C signature

typedef enum {
    ELM_CODE_WIDGET_SCROLLER_POLICY_AUTO = 0,
    ELM_CODE_WIDGET_SCROLLER_POLICY_ON,
    ELM_CODE_WIDGET_SCROLLER_POLICY_OFF,
    ELM_CODE_WIDGET_SCROLLER_POLICY_LAST
} Elm_Code_Widget_Scroller_Policy;