1wxGridCellAttr(3) Erlang Module Definition wxGridCellAttr(3)
2
3
4
6 wxGridCellAttr - See external documentation: wxGridCellAttr.
7
9 See external documentation: wxGridCellAttr.
10
12 wxGridCellAttr():
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 setTextColour(This, ColText) -> ok
21
22 Types:
23
24 This = wxGridCellAttr()
25 ColText = wx:wx_colour()
26
27 See external documentation.
28
29 setBackgroundColour(This, ColBack) -> ok
30
31 Types:
32
33 This = wxGridCellAttr()
34 ColBack = wx:wx_colour()
35
36 See external documentation.
37
38 setFont(This, Font) -> ok
39
40 Types:
41
42 This = wxGridCellAttr()
43 Font = wxFont:wxFont()
44
45 See external documentation.
46
47 setAlignment(This, HAlign, VAlign) -> ok
48
49 Types:
50
51 This = wxGridCellAttr()
52 HAlign = integer()
53 VAlign = integer()
54
55 See external documentation.
56
57 setReadOnly(This) -> ok
58
59 Types:
60
61 This = wxGridCellAttr()
62
63 Equivalent to setReadOnly(This, []).
64
65 setReadOnly(This, Options::[Option]) -> ok
66
67 Types:
68
69 This = wxGridCellAttr()
70 Option = {isReadOnly, boolean()}
71
72 See external documentation.
73
74 setRenderer(This, Renderer) -> ok
75
76 Types:
77
78 This = wxGridCellAttr()
79 Renderer = wxGridCellRenderer:wxGridCellRenderer()
80
81 See external documentation.
82
83 setEditor(This, Editor) -> ok
84
85 Types:
86
87 This = wxGridCellAttr()
88 Editor = wxGridCellEditor:wxGridCellEditor()
89
90 See external documentation.
91
92 hasTextColour(This) -> boolean()
93
94 Types:
95
96 This = wxGridCellAttr()
97
98 See external documentation.
99
100 hasBackgroundColour(This) -> boolean()
101
102 Types:
103
104 This = wxGridCellAttr()
105
106 See external documentation.
107
108 hasFont(This) -> boolean()
109
110 Types:
111
112 This = wxGridCellAttr()
113
114 See external documentation.
115
116 hasAlignment(This) -> boolean()
117
118 Types:
119
120 This = wxGridCellAttr()
121
122 See external documentation.
123
124 hasRenderer(This) -> boolean()
125
126 Types:
127
128 This = wxGridCellAttr()
129
130 See external documentation.
131
132 hasEditor(This) -> boolean()
133
134 Types:
135
136 This = wxGridCellAttr()
137
138 See external documentation.
139
140 getTextColour(This) -> wx:wx_colour4()
141
142 Types:
143
144 This = wxGridCellAttr()
145
146 See external documentation.
147
148 getBackgroundColour(This) -> wx:wx_colour4()
149
150 Types:
151
152 This = wxGridCellAttr()
153
154 See external documentation.
155
156 getFont(This) -> wxFont:wxFont()
157
158 Types:
159
160 This = wxGridCellAttr()
161
162 See external documentation.
163
164 getAlignment(This) -> {HAlign::integer(), VAlign::integer()}
165
166 Types:
167
168 This = wxGridCellAttr()
169
170 See external documentation.
171
172 getRenderer(This, Grid, Row, Col) -> wxGridCellRenderer:wxGridCellRen‐
173 derer()
174
175 Types:
176
177 This = wxGridCellAttr()
178 Grid = wxGrid:wxGrid()
179 Row = integer()
180 Col = integer()
181
182 See external documentation.
183
184 getEditor(This, Grid, Row, Col) -> wxGridCellEditor:wxGridCellEditor()
185
186 Types:
187
188 This = wxGridCellAttr()
189 Grid = wxGrid:wxGrid()
190 Row = integer()
191 Col = integer()
192
193 See external documentation.
194
195 isReadOnly(This) -> boolean()
196
197 Types:
198
199 This = wxGridCellAttr()
200
201 See external documentation.
202
203 setDefAttr(This, DefAttr) -> ok
204
205 Types:
206
207 This = wxGridCellAttr()
208 DefAttr = wxGridCellAttr()
209
210 See external documentation.
211
213 <>
214
215
216
217 wx 1.8.9 wxGridCellAttr(3)