Description

Type that controls how the content is scrolled.

See also Elm.Interface_Scrollable.single_direction.set.

Fields

  • none - Scroll every direction.
  • soft - Scroll single direction if the direction is certain.
  • hard - Scroll only single direction.
  • last - Internal. Sentinel value to indicate last enum field during iteration.

Signature

enum Elm.Scroller.Single_Direction {
    none: 0,
    soft,
    hard,
    last
}

C signature

typedef enum {
    ELM_SCROLLER_SINGLE_DIRECTION_NONE = 0,
    ELM_SCROLLER_SINGLE_DIRECTION_SOFT,
    ELM_SCROLLER_SINGLE_DIRECTION_HARD,
    ELM_SCROLLER_SINGLE_DIRECTION_LAST
} Elm_Scroller_Single_Direction;