1wxRadioBox(3)              Erlang Module Definition              wxRadioBox(3)
2
3
4

NAME

6       wxRadioBox - See external documentation: wxRadioBox.
7

DESCRIPTION

9       See external documentation: wxRadioBox.
10
11       This class is derived (and can use functions) from:
12       wxControl
13       wxWindow
14       wxEvtHandler
15

DATA TYPES

17         wxRadioBox():
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

EXPORTS

25       new(Parent, Id, Title, Pos, Size, Choices) -> wxRadioBox()
26
27              Types:
28
29                 Parent = wxWindow:wxWindow()
30                 Id = integer()
31                 Title = unicode:chardata()
32                 Pos = {X::integer(), Y::integer()}
33                 Size = {W::integer(), H::integer()}
34                 Choices = [unicode:chardata()]
35
36              Equivalent to new(Parent, Id, Title, Pos, Size, Choices, []).
37
38       new(Parent,  Id, Title, Pos, Size, Choices, Options::[Option]) -> wxRa‐
39       dioBox()
40
41              Types:
42
43                 Parent = wxWindow:wxWindow()
44                 Id = integer()
45                 Title = unicode:chardata()
46                 Pos = {X::integer(), Y::integer()}
47                 Size = {W::integer(), H::integer()}
48                 Choices = [unicode:chardata()]
49                 Option = {majorDim, integer()} | {style, integer()}  |  {val,
50                 wx:wx_object()}
51
52              See external documentation.
53
54       create(This, Parent, Id, Title, Pos, Size, Choices) -> boolean()
55
56              Types:
57
58                 This = wxRadioBox()
59                 Parent = wxWindow:wxWindow()
60                 Id = integer()
61                 Title = unicode:chardata()
62                 Pos = {X::integer(), Y::integer()}
63                 Size = {W::integer(), H::integer()}
64                 Choices = [unicode:chardata()]
65
66              Equivalent   to  create(This,  Parent,  Id,  Title,  Pos,  Size,
67              Choices, []).
68
69       create(This, Parent, Id, Title, Pos, Size, Choices,  Options::[Option])
70       -> boolean()
71
72              Types:
73
74                 This = wxRadioBox()
75                 Parent = wxWindow:wxWindow()
76                 Id = integer()
77                 Title = unicode:chardata()
78                 Pos = {X::integer(), Y::integer()}
79                 Size = {W::integer(), H::integer()}
80                 Choices = [unicode:chardata()]
81                 Option  =  {majorDim, integer()} | {style, integer()} | {val,
82                 wx:wx_object()}
83
84              See external documentation.
85
86       enable(This) -> boolean()
87
88              Types:
89
90                 This = wxRadioBox()
91
92              Equivalent to enable(This, []).
93
94       enable(This, N) -> boolean()
95       enable(This, N::[Option]) -> boolean()
96
97              Types:
98
99                 This = wxRadioBox()
100                 N = integer()
101                 This = wxRadioBox()
102                 Option = {enable, boolean()}
103
104              See external documentation.
105              Also:
106              enable(This, [Option]) -> boolean() when
107              This::wxRadioBox(),
108              Option :: {'enable', boolean()}.
109
110
111       enable(This, N, Options::[Option]) -> boolean()
112
113              Types:
114
115                 This = wxRadioBox()
116                 N = integer()
117                 Option = {enable, boolean()}
118
119              See external documentation.
120
121       getSelection(This) -> integer()
122
123              Types:
124
125                 This = wxRadioBox()
126
127              See external documentation.
128
129       getString(This, N) -> unicode:charlist()
130
131              Types:
132
133                 This = wxRadioBox()
134                 N = integer()
135
136              See external documentation.
137
138       setSelection(This, N) -> ok
139
140              Types:
141
142                 This = wxRadioBox()
143                 N = integer()
144
145              See external documentation.
146
147       show(This) -> boolean()
148
149              Types:
150
151                 This = wxRadioBox()
152
153              Equivalent to show(This, []).
154
155       show(This, N) -> boolean()
156       show(This, N::[Option]) -> boolean()
157
158              Types:
159
160                 This = wxRadioBox()
161                 N = integer()
162                 This = wxRadioBox()
163                 Option = {show, boolean()}
164
165              See external documentation.
166              Also:
167              show(This, [Option]) -> boolean() when
168              This::wxRadioBox(),
169              Option :: {'show', boolean()}.
170
171
172       show(This, N, Options::[Option]) -> boolean()
173
174              Types:
175
176                 This = wxRadioBox()
177                 N = integer()
178                 Option = {show, boolean()}
179
180              See external documentation.
181
182       getColumnCount(This) -> integer()
183
184              Types:
185
186                 This = wxRadioBox()
187
188              See external documentation.
189
190       getItemHelpText(This, N) -> unicode:charlist()
191
192              Types:
193
194                 This = wxRadioBox()
195                 N = integer()
196
197              See external documentation.
198
199       getItemToolTip(This, Item) -> wxToolTip:wxToolTip()
200
201              Types:
202
203                 This = wxRadioBox()
204                 Item = integer()
205
206              See external documentation.
207
208       getItemFromPoint(This, Pt) -> integer()
209
210              Types:
211
212                 This = wxRadioBox()
213                 Pt = {X::integer(), Y::integer()}
214
215              See external documentation.
216
217       getRowCount(This) -> integer()
218
219              Types:
220
221                 This = wxRadioBox()
222
223              See external documentation.
224
225       isItemEnabled(This, N) -> boolean()
226
227              Types:
228
229                 This = wxRadioBox()
230                 N = integer()
231
232              See external documentation.
233
234       isItemShown(This, N) -> boolean()
235
236              Types:
237
238                 This = wxRadioBox()
239                 N = integer()
240
241              See external documentation.
242
243       setItemHelpText(This, N, HelpText) -> ok
244
245              Types:
246
247                 This = wxRadioBox()
248                 N = integer()
249                 HelpText = unicode:chardata()
250
251              See external documentation.
252
253       setItemToolTip(This, Item, Text) -> ok
254
255              Types:
256
257                 This = wxRadioBox()
258                 Item = integer()
259                 Text = unicode:chardata()
260
261              See external documentation.
262
263       destroy(This::wxRadioBox()) -> ok
264
265              Destroys this object, do not use object again
266

AUTHORS

268       <>
269
270
271
272                                  wx 1.9.3.1                     wxRadioBox(3)
Impressum