• Main
  • About
  • Download
  • Contact
  • Docs
  • News
  • Develop
  • Contribute
  • Options
    • Show pagesource
    • Backlinks
    • Media Manager
    • Sitemap
  • Login / Register

Navigation

  • Developing with EFL
  • Setting Up EFL
  • Tutorials: Legacy API
  • Tutorials: Unified C API
  • Tutorials: Unified C# API
  • Programming Guides: Legacy API
  • Programming Guides: Unified C API
  • Programming Guides: Unified C# API
  • Reference Guide: Legacy API
  • Reference Guide: Unified C API
  • Reference Guide: Unified C# API 🌐

Page Contents

  • Description
  • Fields
  • Signature
  • C signature
  • Top of Page

Description

When should the scrollbar be shown.

Since 1.23

Fields

  • auto - Visible if necessary.
  • on - Always visible.
  • off - Always invisible.
  • last - For internal use only.

Signature

enum Efl.Ui.Scrollbar_Mode {
    auto: 0,
    on,
    off,
    last
}

C signature

typedef enum {
    EFL_UI_SCROLLBAR_MODE_AUTO = 0,
    EFL_UI_SCROLLBAR_MODE_ON,
    EFL_UI_SCROLLBAR_MODE_OFF,
    EFL_UI_SCROLLBAR_MODE_LAST
} Efl_Ui_Scrollbar_Mode;