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()

Equivalent to new(Cols, []).

new(Cols, Option::[Option]) -> wxFlexGridSizer()

Types:

Cols = integer()

Option = {vgap, integer()} | {hgap, integer()}

See external documentation.

new(Rows, Cols, Vgap, Hgap) -> wxFlexGridSizer()

Types:

Rows = integer()

Cols = integer()

Vgap = integer()

Hgap = integer()

See external documentation.

addGrowableCol(This, Idx) -> ok

Types:

This = wxFlexGridSizer()

Idx = integer()

Equivalent to addGrowableCol(This, Idx, []).

addGrowableCol(This, Idx, Option::[Option]) -> ok

Types:

This = wxFlexGridSizer()

Idx = integer()

Option = {proportion, integer()}

See external documentation.

addGrowableRow(This, Idx) -> ok

Types:

This = wxFlexGridSizer()

Idx = integer()

Equivalent to addGrowableRow(This, Idx, []).

addGrowableRow(This, Idx, Option::[Option]) -> ok

Types:

This = wxFlexGridSizer()

Idx = integer()

Option = {proportion, integer()}

See external documentation.

getFlexibleDirection(This) -> integer()

Types:

This = wxFlexGridSizer()

See external documentation.

getNonFlexibleGrowMode(This) -> wx_enum() (see module wx)

Types:

This = wxFlexGridSizer()

See external documentation.

Res = ?wxFLEX_GROWMODE_NONE | ?wxFLEX_GROWMODE_SPECIFIED | ?wxFLEX_GROWMODE_ALL

removeGrowableCol(This, Idx) -> ok

Types:

This = wxFlexGridSizer()

Idx = integer()

See external documentation.

removeGrowableRow(This, Idx) -> ok

Types:

This = wxFlexGridSizer()

Idx = integer()

See external documentation.

setFlexibleDirection(This, Direction) -> ok

Types:

This = wxFlexGridSizer()

Direction = integer()

See external documentation.

setNonFlexibleGrowMode(This, Mode) -> ok

Types:

This = wxFlexGridSizer()

Mode = wx_enum() (see module wx)

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

<>