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
wxListBox(3erl) | Erlang Module Definition | wxListBox(3erl) |
NAME¶
wxListBox - See external documentation: wxListBox.DESCRIPTION¶
See external documentation: wxListBox.This class is derived (and can use functions) from:
wxControlWithItems
wxControl
wxWindow
wxEvtHandler
DATA TYPES¶
- wxListBox():
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() -> wxListBox()See external documentation.
new(Parent, Id) -> wxListBox()
Types:
Id = integer()
Equivalent to new(Parent, Id, []).
new(Parent, Id, Options::[Option]) -> wxListBox()
Types:
Id = integer()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {choices, [unicode:chardata()]} | {style, integer()} | {validator, wx:wx_object()}
See external documentation.
create(This, Parent, Id, Pos, Size, Choices) ->
boolean()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [unicode:chardata()]
Equivalent to create(This, Parent, Id, Pos, Size, Choices, []).
create(This, Parent, Id, Pos, Size, Choices, Options::[Option])
-> boolean()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [unicode:chardata()]
Option = {style, integer()} | {validator, wx:wx_object()}
See external documentation.
deselect(This, N) -> ok
Types:
N = integer()
See external documentation.
getSelections(This) -> Result
Types:
This = wxListBox()
See external documentation.
insertItems(This, Items, Pos) -> ok
Types:
Items = [unicode:chardata()]
Pos = integer()
See external documentation.
isSelected(This, N) -> boolean()
Types:
N = integer()
See external documentation.
set(This, Items) -> ok
Types:
Items = [unicode:chardata()]
See external documentation.
hitTest(This, Point) -> integer()
Types:
Point = {X::integer(), Y::integer()}
See external documentation.
setFirstItem(This, N) -> ok
Types:
N = integer()
See external documentation.
Also:
setFirstItem(This, S) -> 'ok' when
This::wxListBox(), S::unicode:chardata().
destroy(This::wxListBox()) -> ok
Destroys this object, do not use object again
AUTHORS¶
<>wx 1.8 |