1wxStaticText(3) Erlang Module Definition wxStaticText(3)
2
3
4
6 wxStaticText - See external documentation: wxStaticText.
7
9 See external documentation: wxStaticText.
10
11 This class is derived (and can use functions) from:
12 wxControl
13 wxWindow
14 wxEvtHandler
15
17 wxStaticText():
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() -> wxStaticText()
26
27 See external documentation.
28
29 new(Parent, Id, Label) -> wxStaticText()
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]) -> wxStaticText()
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()}
48
49 See external documentation.
50
51 create(This, Parent, Id, Label) -> boolean()
52
53 Types:
54
55 This = wxStaticText()
56 Parent = wxWindow:wxWindow()
57 Id = integer()
58 Label = unicode:chardata()
59
60 Equivalent to create(This, Parent, Id, Label, []).
61
62 create(This, Parent, Id, Label, Options::[Option]) -> boolean()
63
64 Types:
65
66 This = wxStaticText()
67 Parent = wxWindow:wxWindow()
68 Id = integer()
69 Label = unicode:chardata()
70 Option = {pos, {X::integer(), Y::integer()}} | {size,
71 {W::integer(), H::integer()}} | {style, integer()}
72
73 See external documentation.
74
75 getLabel(This) -> unicode:charlist()
76
77 Types:
78
79 This = wxStaticText()
80
81 See external documentation.
82
83 setLabel(This, Label) -> ok
84
85 Types:
86
87 This = wxStaticText()
88 Label = unicode:chardata()
89
90 See external documentation.
91
92 wrap(This, Width) -> ok
93
94 Types:
95
96 This = wxStaticText()
97 Width = integer()
98
99 See external documentation.
100
101 destroy(This::wxStaticText()) -> ok
102
103 Destroys this object, do not use object again
104
106 <>
107
108
109
110 wx 1.8.9 wxStaticText(3)