1wxCheckListBox(3) Erlang Module Definition wxCheckListBox(3)
2
3
4
6 wxCheckListBox - See external documentation: wxCheckListBox.
7
9 See external documentation: wxCheckListBox.
10
11 This class is derived (and can use functions) from:
12 wxListBox
13 wxControlWithItems
14 wxControl
15 wxWindow
16 wxEvtHandler
17
19 wxCheckListBox():
20
21
22 An object reference, The representation is internal and can be
23 changed without notice. It can't be used for comparsion stored on
24 disc or distributed for use on other nodes.
25
27 new() -> wxCheckListBox()
28
29 See external documentation.
30
31 new(Parent, Id) -> wxCheckListBox()
32
33 Types:
34
35 Parent = wxWindow:wxWindow()
36 Id = integer()
37
38 Equivalent to new(Parent, Id, []).
39
40 new(Parent, Id, Options::[Option]) -> wxCheckListBox()
41
42 Types:
43
44 Parent = wxWindow:wxWindow()
45 Id = integer()
46 Option = {pos, {X::integer(), Y::integer()}} | {size,
47 {W::integer(), H::integer()}} | {choices, [unicode:char‐
48 data()]} | {style, integer()} | {validator, wx:wx_object()}
49
50 See external documentation.
51
52 check(This, Index) -> ok
53
54 Types:
55
56 This = wxCheckListBox()
57 Index = integer()
58
59 Equivalent to check(This, Index, []).
60
61 check(This, Index, Options::[Option]) -> ok
62
63 Types:
64
65 This = wxCheckListBox()
66 Index = integer()
67 Option = {check, boolean()}
68
69 See external documentation.
70
71 isChecked(This, Index) -> boolean()
72
73 Types:
74
75 This = wxCheckListBox()
76 Index = integer()
77
78 See external documentation.
79
80 destroy(This::wxCheckListBox()) -> ok
81
82 Destroys this object, do not use object again
83
85 <>
86
87
88
89 wx 1.8.9 wxCheckListBox(3)