1wxComboBox(3) Erlang Module Definition wxComboBox(3)
2
3
4
6 wxComboBox - See external documentation: wxComboBox.
7
9 See external documentation: wxComboBox.
10
11 This class is derived (and can use functions) from:
12 wxControlWithItems
13 wxControl
14 wxWindow
15 wxEvtHandler
16
18 wxComboBox():
19
20
21 An object reference, The representation is internal and can be
22 changed without notice. It can't be used for comparsion stored on
23 disc or distributed for use on other nodes.
24
26 new() -> wxComboBox()
27
28 See external documentation.
29
30 new(Parent, Id) -> wxComboBox()
31
32 Types:
33
34 Parent = wxWindow:wxWindow()
35 Id = integer()
36
37 Equivalent to new(Parent, Id, []).
38
39 new(Parent, Id, Options::[Option]) -> wxComboBox()
40
41 Types:
42
43 Parent = wxWindow:wxWindow()
44 Id = integer()
45 Option = {value, unicode:chardata()} | {pos, {X::integer(),
46 Y::integer()}} | {size, {W::integer(), H::integer()}} |
47 {choices, [unicode:chardata()]} | {style, integer()} | {val‐
48 idator, wx:wx_object()}
49
50 See external documentation.
51
52 create(This, Parent, Id, Value, Pos, Size, Choices) -> boolean()
53
54 Types:
55
56 This = wxComboBox()
57 Parent = wxWindow:wxWindow()
58 Id = integer()
59 Value = unicode:chardata()
60 Pos = {X::integer(), Y::integer()}
61 Size = {W::integer(), H::integer()}
62 Choices = [unicode:chardata()]
63
64 Equivalent to create(This, Parent, Id, Value, Pos, Size,
65 Choices, []).
66
67 create(This, Parent, Id, Value, Pos, Size, Choices, Options::[Option])
68 -> boolean()
69
70 Types:
71
72 This = wxComboBox()
73 Parent = wxWindow:wxWindow()
74 Id = integer()
75 Value = unicode:chardata()
76 Pos = {X::integer(), Y::integer()}
77 Size = {W::integer(), H::integer()}
78 Choices = [unicode:chardata()]
79 Option = {style, integer()} | {validator, wx:wx_object()}
80
81 See external documentation.
82
83 canCopy(This) -> boolean()
84
85 Types:
86
87 This = wxComboBox()
88
89 See external documentation.
90
91 canCut(This) -> boolean()
92
93 Types:
94
95 This = wxComboBox()
96
97 See external documentation.
98
99 canPaste(This) -> boolean()
100
101 Types:
102
103 This = wxComboBox()
104
105 See external documentation.
106
107 canRedo(This) -> boolean()
108
109 Types:
110
111 This = wxComboBox()
112
113 See external documentation.
114
115 canUndo(This) -> boolean()
116
117 Types:
118
119 This = wxComboBox()
120
121 See external documentation.
122
123 copy(This) -> ok
124
125 Types:
126
127 This = wxComboBox()
128
129 See external documentation.
130
131 cut(This) -> ok
132
133 Types:
134
135 This = wxComboBox()
136
137 See external documentation.
138
139 getInsertionPoint(This) -> integer()
140
141 Types:
142
143 This = wxComboBox()
144
145 See external documentation.
146
147 getLastPosition(This) -> integer()
148
149 Types:
150
151 This = wxComboBox()
152
153 See external documentation.
154
155 getValue(This) -> unicode:charlist()
156
157 Types:
158
159 This = wxComboBox()
160
161 See external documentation.
162
163 paste(This) -> ok
164
165 Types:
166
167 This = wxComboBox()
168
169 See external documentation.
170
171 redo(This) -> ok
172
173 Types:
174
175 This = wxComboBox()
176
177 See external documentation.
178
179 replace(This, From, To, Value) -> ok
180
181 Types:
182
183 This = wxComboBox()
184 From = integer()
185 To = integer()
186 Value = unicode:chardata()
187
188 See external documentation.
189
190 remove(This, From, To) -> ok
191
192 Types:
193
194 This = wxComboBox()
195 From = integer()
196 To = integer()
197
198 See external documentation.
199
200 setInsertionPoint(This, Pos) -> ok
201
202 Types:
203
204 This = wxComboBox()
205 Pos = integer()
206
207 See external documentation.
208
209 setInsertionPointEnd(This) -> ok
210
211 Types:
212
213 This = wxComboBox()
214
215 See external documentation.
216
217 setSelection(This, N) -> ok
218
219 Types:
220
221 This = wxComboBox()
222 N = integer()
223
224 See external documentation.
225
226 setSelection(This, From, To) -> ok
227
228 Types:
229
230 This = wxComboBox()
231 From = integer()
232 To = integer()
233
234 See external documentation.
235
236 setValue(This, Value) -> ok
237
238 Types:
239
240 This = wxComboBox()
241 Value = unicode:chardata()
242
243 See external documentation.
244
245 undo(This) -> ok
246
247 Types:
248
249 This = wxComboBox()
250
251 See external documentation.
252
253 destroy(This::wxComboBox()) -> ok
254
255 Destroys this object, do not use object again
256
258 <>
259
260
261
262 wx 1.9.3 wxComboBox(3)