DESCRIPTION
See external documentation: wxGridSizer.
This class is derived (and can use functions) from:
wxSizer
DATA TYPES
-
- wxGridSizer():
-
-
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) -> wxGridSizer()
-
Types:
-
Cols = integer()
-
Cols = integer()
-
Equivalent to new(Cols, []).
new(Cols, Options::[Option]) -> wxGridSizer()
-
Types:
-
Cols = integer()
Option = {vgap, integer()} | {hgap, integer()}
-
Cols = integer()
-
See external documentation.
new(Rows, Cols, Vgap, Hgap) -> wxGridSizer()
-
Types:
-
Rows = integer()
Cols = integer()
Vgap = integer()
Hgap = integer()
-
Rows = integer()
-
See external documentation.
getCols(This) -> integer()
-
Types:
-
This = wxGridSizer()
-
This = wxGridSizer()
-
See external documentation.
getHGap(This) -> integer()
-
Types:
-
This = wxGridSizer()
-
This = wxGridSizer()
-
See external documentation.
getRows(This) -> integer()
-
Types:
-
This = wxGridSizer()
-
This = wxGridSizer()
-
See external documentation.
getVGap(This) -> integer()
-
Types:
-
This = wxGridSizer()
-
This = wxGridSizer()
-
See external documentation.
setCols(This, Cols) -> ok
-
Types:
-
This = wxGridSizer()
Cols = integer()
-
This = wxGridSizer()
-
See external documentation.
setHGap(This, Gap) -> ok
-
Types:
-
This = wxGridSizer()
Gap = integer()
-
This = wxGridSizer()
-
See external documentation.
setRows(This, Rows) -> ok
-
Types:
-
This = wxGridSizer()
Rows = integer()
-
This = wxGridSizer()
-
See external documentation.
setVGap(This, Gap) -> ok
-
Types:
-
This = wxGridSizer()
Gap = integer()
-
This = wxGridSizer()
-
See external documentation.
destroy(This::wxGridSizer()) -> ok
-
Destroys this object, do not use object again
AUTHORS
<>