1wxBoxSizer(3) Erlang Module Definition wxBoxSizer(3)
2
3
4
6 wxBoxSizer - Functions for wxBoxSizer class
7
9 The basic idea behind a box sizer is that windows will most often be
10 laid out in rather simple basic geometry, typically in a row or a col‐
11 umn or several hierarchies of either.
12
13 For more information, please see overview_sizer_box.
14
15 See: wxSizer, Overview sizer
16
17 This class is derived (and can use functions) from: wxSizer
18
19 wxWidgets docs: wxBoxSizer
20
22 wxBoxSizer() = wx:wx_object()
23
25 new(Orient) -> wxBoxSizer()
26
27 Types:
28
29 Orient = integer()
30
31 Constructor for a wxBoxSizer.
32
33 orient may be either of wxVERTICAL or wxHORIZONTAL for creating
34 either a column sizer or a row sizer.
35
36 getOrientation(This) -> integer()
37
38 Types:
39
40 This = wxBoxSizer()
41
42 Returns the orientation of the box sizer, either wxVERTICAL or
43 wxHORIZONTAL.
44
45 destroy(This :: wxBoxSizer()) -> ok
46
47 Destroys the object.
48
49
50
51wxWidgets team. wx 2.2.2 wxBoxSizer(3)