table of contents
- stretch 1:19.2.1+dfsg-2+deb9u2
- testing 1:21.2.6+dfsg-1
- unstable 1:21.2.6+dfsg-1
- experimental 1:22.0.4+dfsg-1
wxFlexGridSizer(3erl) | Erlang Module Definition | wxFlexGridSizer(3erl) |
NAME¶
wxFlexGridSizer - See external documentation: wxFlexGridSizer.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:
Equivalent to new(Cols, []).
new(Cols, Options::[Option]) -> wxFlexGridSizer()
Types:
Option = {vgap, integer()} | {hgap, integer()}
See external documentation.
new(Rows, Cols, Vgap, Hgap) -> wxFlexGridSizer()
Types:
Cols = integer()
Vgap = integer()
Hgap = integer()
See external documentation.
addGrowableCol(This, Idx) -> ok
Types:
Idx = integer()
Equivalent to addGrowableCol(This, Idx, []).
addGrowableCol(This, Idx, Options::[Option]) -> ok
Types:
Idx = integer()
Option = {proportion, integer()}
See external documentation.
addGrowableRow(This, Idx) -> ok
Types:
Idx = integer()
Equivalent to addGrowableRow(This, Idx, []).
addGrowableRow(This, Idx, Options::[Option]) -> ok
Types:
Idx = integer()
Option = {proportion, integer()}
See external documentation.
getFlexibleDirection(This) -> integer()
Types:
See external documentation.
getNonFlexibleGrowMode(This) -> wx:wx_enum()
Types:
See external documentation.
Res = ?wxFLEX_GROWMODE_NONE | ?wxFLEX_GROWMODE_SPECIFIED |
?wxFLEX_GROWMODE_ALL
removeGrowableCol(This, Idx) -> ok
Types:
Idx = integer()
See external documentation.
removeGrowableRow(This, Idx) -> ok
Types:
Idx = integer()
See external documentation.
setFlexibleDirection(This, Direction) -> ok
Types:
Direction = integer()
See external documentation.
setNonFlexibleGrowMode(This, Mode) -> ok
Types:
Mode = wx:wx_enum()
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¶
<>wx 1.8 |