Class: Wx::FlexSizerGrowMode

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

Overview

Values which define the behaviour for resizing FlexGridSizer cells in the "non-flexible" direction.

Constant Summary collapse

FLEX_GROWMODE_NONE =

Don't resize the cells in non-flexible direction at all.

Wx::FlexSizerGrowMode.new(0)
FLEX_GROWMODE_SPECIFIED =

Uniformly resize only the specified ones (default).

Wx::FlexSizerGrowMode.new(1)
FLEX_GROWMODE_ALL =

Uniformly resize all cells.

Wx::FlexSizerGrowMode.new(2)