1wxPen(3) Erlang Module Definition wxPen(3)
2
3
4
6 wxPen - See external documentation: wxPen.
7
9 See external documentation: wxPen.
10
12 wxPen():
13
14
15 An object reference, The representation is internal and can be
16 changed without notice. It can't be used for comparsion stored on
17 disc or distributed for use on other nodes.
18
20 new() -> wxPen()
21
22 See external documentation.
23
24 new(Colour) -> wxPen()
25
26 Types:
27
28 Colour = wx:wx_colour()
29
30 Equivalent to new(Colour, []).
31
32 new(Colour, Options::[Option]) -> wxPen()
33
34 Types:
35
36 Colour = wx:wx_colour()
37 Option = {width, integer()} | {style, integer()}
38
39 See external documentation.
40
41 getCap(This) -> integer()
42
43 Types:
44
45 This = wxPen()
46
47 See external documentation.
48
49 getColour(This) -> wx:wx_colour4()
50
51 Types:
52
53 This = wxPen()
54
55 See external documentation.
56
57 getJoin(This) -> integer()
58
59 Types:
60
61 This = wxPen()
62
63 See external documentation.
64
65 getStyle(This) -> integer()
66
67 Types:
68
69 This = wxPen()
70
71 See external documentation.
72
73 getWidth(This) -> integer()
74
75 Types:
76
77 This = wxPen()
78
79 See external documentation.
80
81 isOk(This) -> boolean()
82
83 Types:
84
85 This = wxPen()
86
87 See external documentation.
88
89 setCap(This, CapStyle) -> ok
90
91 Types:
92
93 This = wxPen()
94 CapStyle = wx:wx_enum()
95
96 See external documentation.
97 CapStyle = integer
98
99 setColour(This, Colour) -> ok
100
101 Types:
102
103 This = wxPen()
104 Colour = wx:wx_colour()
105
106 See external documentation.
107
108 setColour(This, Red, Green, Blue) -> ok
109
110 Types:
111
112 This = wxPen()
113 Red = integer()
114 Green = integer()
115 Blue = integer()
116
117 See external documentation.
118
119 setJoin(This, JoinStyle) -> ok
120
121 Types:
122
123 This = wxPen()
124 JoinStyle = wx:wx_enum()
125
126 See external documentation.
127 JoinStyle = integer
128
129 setStyle(This, Style) -> ok
130
131 Types:
132
133 This = wxPen()
134 Style = integer()
135
136 See external documentation.
137
138 setWidth(This, Width) -> ok
139
140 Types:
141
142 This = wxPen()
143 Width = integer()
144
145 See external documentation.
146
147 destroy(This::wxPen()) -> ok
148
149 Destroys this object, do not use object again
150
152 <>
153
154
155
156 wx 1.8.9 wxPen(3)