DESCRIPTION
See external documentation: wxFlexGridSizer.
This class is derived (and can use functions) from:
wxGridSizer
wxSizer
DATA TYPES
-
- wxFlexGridSizer():
-
-
An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes.
-
EXPORTS
new(Cols) -> wxFlexGridSizer()
-
Types:
-
Cols = integer()
-
Cols = integer()
-
Equivalent to new(Cols, []).
new(Cols, Options::[Option]) -> wxFlexGridSizer()
-
Types:
-
Cols = integer()
Option = {vgap, integer()} | {hgap, integer()}
-
Cols = integer()
-
See external documentation.
new(Rows, Cols, Vgap, Hgap) -> wxFlexGridSizer()
-
Types:
-
Rows = integer()
Cols = integer()
Vgap = integer()
Hgap = integer()
-
Rows = integer()
-
See external documentation.
addGrowableCol(This, Idx) -> ok
-
Types:
-
This = wxFlexGridSizer()
Idx = integer()
-
This = wxFlexGridSizer()
-
Equivalent to addGrowableCol(This, Idx, []).
addGrowableCol(This, Idx, Options::[Option]) -> ok
-
Types:
-
This = wxFlexGridSizer()
Idx = integer()
Option = {proportion, integer()}
-
This = wxFlexGridSizer()
-
See external documentation.
addGrowableRow(This, Idx) -> ok
-
Types:
-
This = wxFlexGridSizer()
Idx = integer()
-
This = wxFlexGridSizer()
-
Equivalent to addGrowableRow(This, Idx, []).
addGrowableRow(This, Idx, Options::[Option]) -> ok
-
Types:
-
This = wxFlexGridSizer()
Idx = integer()
Option = {proportion, integer()}
-
This = wxFlexGridSizer()
-
See external documentation.
getFlexibleDirection(This) -> integer()
-
Types:
-
This = wxFlexGridSizer()
-
This = wxFlexGridSizer()
-
See external documentation.
getNonFlexibleGrowMode(This) -> wx_enum() (see module wx)
-
Types:
-
This = wxFlexGridSizer()
-
This = wxFlexGridSizer()
-
See external documentation.
Res = ?wxFLEX_GROWMODE_NONE | ?wxFLEX_GROWMODE_SPECIFIED | ?wxFLEX_GROWMODE_ALL
removeGrowableCol(This, Idx) -> ok
-
Types:
-
This = wxFlexGridSizer()
Idx = integer()
-
This = wxFlexGridSizer()
-
See external documentation.
removeGrowableRow(This, Idx) -> ok
-
Types:
-
This = wxFlexGridSizer()
Idx = integer()
-
This = wxFlexGridSizer()
-
See external documentation.
setFlexibleDirection(This, Direction) -> ok
-
Types:
-
This = wxFlexGridSizer()
Direction = integer()
-
This = wxFlexGridSizer()
-
See external documentation.
setNonFlexibleGrowMode(This, Mode) -> ok
-
Types:
-
This = wxFlexGridSizer()
Mode = wx_enum() (see module wx)
-
This = wxFlexGridSizer()
-
See external documentation.
Mode = ?wxFLEX_GROWMODE_NONE | ?wxFLEX_GROWMODE_SPECIFIED | ?wxFLEX_GROWMODE_ALL
destroy(This::wxFlexGridSizer()) -> ok
-
Destroys this object, do not use object again
AUTHORS
<>