1wxCheckBox(3) Erlang Module Definition wxCheckBox(3)
2
3
4
6 wxCheckBox - See external documentation: wxCheckBox.
7
9 See external documentation: wxCheckBox.
10
11 This class is derived (and can use functions) from:
12 wxControl
13 wxWindow
14 wxEvtHandler
15
17 wxCheckBox():
18
19
20 An object reference, The representation is internal and can be
21 changed without notice. It can't be used for comparsion stored on
22 disc or distributed for use on other nodes.
23
25 new() -> wxCheckBox()
26
27 See external documentation.
28
29 new(Parent, Id, Label) -> wxCheckBox()
30
31 Types:
32
33 Parent = wxWindow:wxWindow()
34 Id = integer()
35 Label = unicode:chardata()
36
37 Equivalent to new(Parent, Id, Label, []).
38
39 new(Parent, Id, Label, Options::[Option]) -> wxCheckBox()
40
41 Types:
42
43 Parent = wxWindow:wxWindow()
44 Id = integer()
45 Label = unicode:chardata()
46 Option = {pos, {X::integer(), Y::integer()}} | {size,
47 {W::integer(), H::integer()}} | {style, integer()} | {valida‐
48 tor, wx:wx_object()}
49
50 See external documentation.
51
52 create(This, Parent, Id, Label) -> boolean()
53
54 Types:
55
56 This = wxCheckBox()
57 Parent = wxWindow:wxWindow()
58 Id = integer()
59 Label = unicode:chardata()
60
61 Equivalent to create(This, Parent, Id, Label, []).
62
63 create(This, Parent, Id, Label, Options::[Option]) -> boolean()
64
65 Types:
66
67 This = wxCheckBox()
68 Parent = wxWindow:wxWindow()
69 Id = integer()
70 Label = unicode:chardata()
71 Option = {pos, {X::integer(), Y::integer()}} | {size,
72 {W::integer(), H::integer()}} | {style, integer()} | {valida‐
73 tor, wx:wx_object()}
74
75 See external documentation.
76
77 getValue(This) -> boolean()
78
79 Types:
80
81 This = wxCheckBox()
82
83 See external documentation.
84
85 get3StateValue(This) -> wx:wx_enum()
86
87 Types:
88
89 This = wxCheckBox()
90
91 See external documentation.
92 Res = ?wxCHK_UNCHECKED | ?wxCHK_CHECKED | ?wxCHK_UNDETERMINED
93
94 is3rdStateAllowedForUser(This) -> boolean()
95
96 Types:
97
98 This = wxCheckBox()
99
100 See external documentation.
101
102 is3State(This) -> boolean()
103
104 Types:
105
106 This = wxCheckBox()
107
108 See external documentation.
109
110 isChecked(This) -> boolean()
111
112 Types:
113
114 This = wxCheckBox()
115
116 See external documentation.
117
118 setValue(This, State) -> ok
119
120 Types:
121
122 This = wxCheckBox()
123 State = boolean()
124
125 See external documentation.
126
127 set3StateValue(This, State) -> ok
128
129 Types:
130
131 This = wxCheckBox()
132 State = wx:wx_enum()
133
134 See external documentation.
135 State = ?wxCHK_UNCHECKED | ?wxCHK_CHECKED | ?wxCHK_UNDETERMINED
136
137 destroy(This::wxCheckBox()) -> ok
138
139 Destroys this object, do not use object again
140
142 <>
143
144
145
146 wx 1.8.3 wxCheckBox(3)