wxComboBox(3erl) Erlang Module Definition wxComboBox(3erl)
NAME
wxComboBox - See external documentation: wxComboBox.
DESCRIPTION
See external documentation: wxComboBox.
This class is derived (and can use functions) from:
wxControlWithItems
wxControl
wxWindow
wxEvtHandler
DATA TYPES
wxComboBox():
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() -> wxComboBox()
See external documentation.
new(Parent, Id) -> wxComboBox()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Equivalent to new(Parent, Id, []).
new(Parent, Id, Options::[Option]) -> wxComboBox()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Option = {value, unicode:chardata()} | {pos, {X::integer(),
Y::integer()}} | {size, {W::integer(), H::integer()}} |
{choices, [unicode:chardata()]} | {style, integer()} | {val-
idator, wx:wx_object()}
See external documentation.
create(This, Parent, Id, Value, Pos, Size, Choices) -> boolean()
Types:
This = wxComboBox()
Parent = wxWindow:wxWindow()
Id = integer()
Value = unicode:chardata()
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [unicode:chardata()]
Equivalent to create(This, Parent, Id, Value, Pos, Size,
Choices, []).
create(This, Parent, Id, Value, Pos, Size, Choices, Options::[Option])
-> boolean()
Types:
This = wxComboBox()
Parent = wxWindow:wxWindow()
Id = integer()
Value = unicode:chardata()
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [unicode:chardata()]
Option = {style, integer()} | {validator, wx:wx_object()}
See external documentation.
canCopy(This) -> boolean()
Types:
This = wxComboBox()
See external documentation.
canCut(This) -> boolean()
Types:
This = wxComboBox()
See external documentation.
canPaste(This) -> boolean()
Types:
This = wxComboBox()
See external documentation.
canRedo(This) -> boolean()
Types:
This = wxComboBox()
See external documentation.
canUndo(This) -> boolean()
Types:
This = wxComboBox()
See external documentation.
copy(This) -> ok
Types:
This = wxComboBox()
See external documentation.
cut(This) -> ok
Types:
This = wxComboBox()
See external documentation.
getInsertionPoint(This) -> integer()
Types:
This = wxComboBox()
See external documentation.
getLastPosition(This) -> integer()
Types:
This = wxComboBox()
See external documentation.
getValue(This) -> unicode:charlist()
Types:
This = wxComboBox()
See external documentation.
paste(This) -> ok
Types:
This = wxComboBox()
See external documentation.
redo(This) -> ok
Types:
This = wxComboBox()
See external documentation.
replace(This, From, To, Value) -> ok
Types:
This = wxComboBox()
From = integer()
To = integer()
Value = unicode:chardata()
See external documentation.
remove(This, From, To) -> ok
Types:
This = wxComboBox()
From = integer()
To = integer()
See external documentation.
setInsertionPoint(This, Pos) -> ok
Types:
This = wxComboBox()
Pos = integer()
See external documentation.
setInsertionPointEnd(This) -> ok
Types:
This = wxComboBox()
See external documentation.
setSelection(This, N) -> ok
Types:
This = wxComboBox()
N = integer()
See external documentation.
setSelection(This, From, To) -> ok
Types:
This = wxComboBox()
From = integer()
To = integer()
See external documentation.
setValue(This, Value) -> ok
Types:
This = wxComboBox()
Value = unicode:chardata()
See external documentation.
undo(This) -> ok
Types:
This = wxComboBox()
See external documentation.
destroy(This::wxComboBox()) -> ok
Destroys this object, do not use object again
AUTHORS
<>
wx 1.9.1 wxComboBox(3erl)