DESCRIPTION
See external documentation: wxRadioBox.
This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler
DATA TYPES
-
- wxRadioBox():
-
-
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(Parent, Id, Title, Pos, Size, Choices) -> wxRadioBox()
-
Types:
-
Parent = wxWindow() (see module wxWindow)
Id = integer()
Title = chardata() (see module unicode)
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [chardata() (see module unicode)]
-
Parent = wxWindow() (see module wxWindow)
-
Equivalent to new(Parent, Id, Title, Pos, Size, Choices, []).
new(Parent, Id, Title, Pos, Size, Choices, Options::[Option]) -> wxRadioBox()
-
Types:
-
Parent = wxWindow() (see module wxWindow)
Id = integer()
Title = chardata() (see module unicode)
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [chardata() (see module unicode)]
Option = {majorDim, integer()} | {style, integer()} | {val, wx_object() (see module wx)}
-
Parent = wxWindow() (see module wxWindow)
-
See external documentation.
create(This, Parent, Id, Title, Pos, Size, Choices) -> boolean()
-
Types:
-
This = wxRadioBox()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Title = chardata() (see module unicode)
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [chardata() (see module unicode)]
-
This = wxRadioBox()
-
Equivalent to create(This, Parent, Id, Title, Pos, Size, Choices, []).
create(This, Parent, Id, Title, Pos, Size, Choices, Options::[Option]) -> boolean()
-
Types:
-
This = wxRadioBox()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Title = chardata() (see module unicode)
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [chardata() (see module unicode)]
Option = {majorDim, integer()} | {style, integer()} | {val, wx_object() (see module wx)}
-
This = wxRadioBox()
-
See external documentation.
enable(This) -> boolean()
-
Types:
-
This = wxRadioBox()
-
This = wxRadioBox()
-
Equivalent to enable(This, []).
enable(This, N) -> boolean()
-
Types:
-
This = wxRadioBox()
N = integer()
-
This = wxRadioBox()
-
See external documentation.
Also:
enable(This, [Option]) -> boolean() when
This::wxRadioBox(),
Option :: {'enable', boolean()}.
enable(This, N, Options::[Option]) -> boolean()
-
Types:
-
This = wxRadioBox()
N = integer()
Option = {enable, boolean()}
-
This = wxRadioBox()
-
See external documentation.
getSelection(This) -> integer()
-
Types:
-
This = wxRadioBox()
-
This = wxRadioBox()
-
See external documentation.
getString(This, N) -> charlist() (see module unicode)
-
Types:
-
This = wxRadioBox()
N = integer()
-
This = wxRadioBox()
-
See external documentation.
setSelection(This, N) -> ok
-
Types:
-
This = wxRadioBox()
N = integer()
-
This = wxRadioBox()
-
See external documentation.
show(This) -> boolean()
-
Types:
-
This = wxRadioBox()
-
This = wxRadioBox()
-
Equivalent to show(This, []).
show(This, N) -> boolean()
-
Types:
-
This = wxRadioBox()
N = integer()
-
This = wxRadioBox()
-
See external documentation.
Also:
show(This, [Option]) -> boolean() when
This::wxRadioBox(),
Option :: {'show', boolean()}.
show(This, N, Options::[Option]) -> boolean()
-
Types:
-
This = wxRadioBox()
N = integer()
Option = {show, boolean()}
-
This = wxRadioBox()
-
See external documentation.
getColumnCount(This) -> integer()
-
Types:
-
This = wxRadioBox()
-
This = wxRadioBox()
-
See external documentation.
getItemHelpText(This, N) -> charlist() (see module unicode)
-
Types:
-
This = wxRadioBox()
N = integer()
-
This = wxRadioBox()
-
See external documentation.
getItemToolTip(This, Item) -> wxToolTip() (see module wxToolTip)
-
Types:
-
This = wxRadioBox()
Item = integer()
-
This = wxRadioBox()
-
See external documentation.
getItemFromPoint(This, Pt) -> integer()
-
Types:
-
This = wxRadioBox()
Pt = {X::integer(), Y::integer()}
-
This = wxRadioBox()
-
See external documentation.
getRowCount(This) -> integer()
-
Types:
-
This = wxRadioBox()
-
This = wxRadioBox()
-
See external documentation.
isItemEnabled(This, N) -> boolean()
-
Types:
-
This = wxRadioBox()
N = integer()
-
This = wxRadioBox()
-
See external documentation.
isItemShown(This, N) -> boolean()
-
Types:
-
This = wxRadioBox()
N = integer()
-
This = wxRadioBox()
-
See external documentation.
setItemHelpText(This, N, HelpText) -> ok
-
Types:
-
This = wxRadioBox()
N = integer()
HelpText = chardata() (see module unicode)
-
This = wxRadioBox()
-
See external documentation.
setItemToolTip(This, Item, Text) -> ok
-
Types:
-
This = wxRadioBox()
Item = integer()
Text = chardata() (see module unicode)
-
This = wxRadioBox()
-
See external documentation.
destroy(This::wxRadioBox()) -> ok
-
Destroys this object, do not use object again
AUTHORS
<>