Class: Wx::ScrollbarVisibility

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/scrolled_window.rb

Overview

Possible values for the second argument of Wx::Scrolled#show_scrollbars.

Constant Summary collapse

SHOW_SB_NEVER =

Never show the scrollbar at all.

Wx::ScrollbarVisibility.new(-1)
SHOW_SB_DEFAULT =

Show scrollbar only if it is needed.

Wx::ScrollbarVisibility.new(0)
SHOW_SB_ALWAYS =

Always show scrollbar, even if not needed.

Wx::ScrollbarVisibility.new(1)