1wxFlexGridSizer(3) Erlang Module Definition wxFlexGridSizer(3)
2
3
4
6 wxFlexGridSizer - See external documentation: wxFlexGridSizer.
7
9 See external documentation: wxFlexGridSizer.
10
11 This class is derived (and can use functions) from:
12 wxGridSizer
13 wxSizer
14
16 wxFlexGridSizer():
17
18
19 An object reference, The representation is internal and can be
20 changed without notice. It can't be used for comparsion stored on
21 disc or distributed for use on other nodes.
22
24 new(Cols) -> wxFlexGridSizer()
25
26 Types:
27
28 Cols = integer()
29
30 Equivalent to new(Cols, []).
31
32 new(Cols, Options::[Option]) -> wxFlexGridSizer()
33
34 Types:
35
36 Cols = integer()
37 Option = {vgap, integer()} | {hgap, integer()}
38
39 See external documentation.
40
41 new(Rows, Cols, Vgap, Hgap) -> wxFlexGridSizer()
42
43 Types:
44
45 Rows = integer()
46 Cols = integer()
47 Vgap = integer()
48 Hgap = integer()
49
50 See external documentation.
51
52 addGrowableCol(This, Idx) -> ok
53
54 Types:
55
56 This = wxFlexGridSizer()
57 Idx = integer()
58
59 Equivalent to addGrowableCol(This, Idx, []).
60
61 addGrowableCol(This, Idx, Options::[Option]) -> ok
62
63 Types:
64
65 This = wxFlexGridSizer()
66 Idx = integer()
67 Option = {proportion, integer()}
68
69 See external documentation.
70
71 addGrowableRow(This, Idx) -> ok
72
73 Types:
74
75 This = wxFlexGridSizer()
76 Idx = integer()
77
78 Equivalent to addGrowableRow(This, Idx, []).
79
80 addGrowableRow(This, Idx, Options::[Option]) -> ok
81
82 Types:
83
84 This = wxFlexGridSizer()
85 Idx = integer()
86 Option = {proportion, integer()}
87
88 See external documentation.
89
90 getFlexibleDirection(This) -> integer()
91
92 Types:
93
94 This = wxFlexGridSizer()
95
96 See external documentation.
97
98 getNonFlexibleGrowMode(This) -> wx:wx_enum()
99
100 Types:
101
102 This = wxFlexGridSizer()
103
104 See external documentation.
105 Res = ?wxFLEX_GROWMODE_NONE | ?wxFLEX_GROWMODE_SPECIFIED |
106 ?wxFLEX_GROWMODE_ALL
107
108 removeGrowableCol(This, Idx) -> ok
109
110 Types:
111
112 This = wxFlexGridSizer()
113 Idx = integer()
114
115 See external documentation.
116
117 removeGrowableRow(This, Idx) -> ok
118
119 Types:
120
121 This = wxFlexGridSizer()
122 Idx = integer()
123
124 See external documentation.
125
126 setFlexibleDirection(This, Direction) -> ok
127
128 Types:
129
130 This = wxFlexGridSizer()
131 Direction = integer()
132
133 See external documentation.
134
135 setNonFlexibleGrowMode(This, Mode) -> ok
136
137 Types:
138
139 This = wxFlexGridSizer()
140 Mode = wx:wx_enum()
141
142 See external documentation.
143 Mode = ?wxFLEX_GROWMODE_NONE | ?wxFLEX_GROWMODE_SPECIFIED |
144 ?wxFLEX_GROWMODE_ALL
145
146 destroy(This::wxFlexGridSizer()) -> ok
147
148 Destroys this object, do not use object again
149
151 <>
152
153
154
155 wx 1.9.3.1 wxFlexGridSizer(3)