Provided by: erlang-manpages_16.b.3-dfsg-1ubuntu2.2_all
NAME
wxRadioBox - See external documentation: wxRadioBox.
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)] Equivalent to new(Parent, Id, Title, Pos, Size, Choices, []). new(Parent, Id, Title, Pos, Size, Choices, Option::[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)} 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)] Equivalent to create(This, Parent, Id, Title, Pos, Size, Choices, []). create(This, Parent, Id, Title, Pos, Size, Choices, Option::[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)} See external documentation. enable(This) -> boolean() Types: This = wxRadioBox() Equivalent to enable(This, []). enable(This, N) -> boolean() Types: This = wxRadioBox() N = integer() See external documentation. Also: enable(This, [Option]) -> boolean() when This::wxRadioBox(), Option :: {enable, boolean()}. enable(This, N, Option::[Option]) -> boolean() Types: This = wxRadioBox() N = integer() Option = {enable, boolean()} See external documentation. getSelection(This) -> integer() Types: This = wxRadioBox() See external documentation. getString(This, N) -> charlist() (see module unicode) Types: This = wxRadioBox() N = integer() See external documentation. setSelection(This, N) -> ok Types: This = wxRadioBox() N = integer() See external documentation. show(This) -> boolean() Types: This = wxRadioBox() Equivalent to show(This, []). show(This, N) -> boolean() Types: This = wxRadioBox() N = integer() See external documentation. Also: show(This, [Option]) -> boolean() when This::wxRadioBox(), Option :: {show, boolean()}. show(This, N, Option::[Option]) -> boolean() Types: This = wxRadioBox() N = integer() Option = {show, boolean()} See external documentation. getColumnCount(This) -> integer() Types: This = wxRadioBox() See external documentation. getItemHelpText(This, N) -> charlist() (see module unicode) Types: This = wxRadioBox() N = integer() See external documentation. getItemToolTip(This, Item) -> wxToolTip() (see module wxToolTip) Types: This = wxRadioBox() Item = integer() See external documentation. getItemFromPoint(This, Pt) -> integer() Types: This = wxRadioBox() Pt = {X::integer(), Y::integer()} See external documentation. getRowCount(This) -> integer() Types: This = wxRadioBox() See external documentation. isItemEnabled(This, N) -> boolean() Types: This = wxRadioBox() N = integer() See external documentation. isItemShown(This, N) -> boolean() Types: This = wxRadioBox() N = integer() See external documentation. setItemHelpText(This, N, HelpText) -> ok Types: This = wxRadioBox() N = integer() HelpText = chardata() (see module unicode) See external documentation. setItemToolTip(This, Item, Text) -> ok Types: This = wxRadioBox() Item = integer() Text = chardata() (see module unicode) See external documentation. destroy(This::wxRadioBox()) -> ok Destroys this object, do not use object again
AUTHORS
<> wx 1.1.1 wxRadioBox(3erl)