]>
Commit | Line | Data |
---|---|---|
8fe05782 VZ |
1 | \section{\class{wxStaticBoxSizer}}\label{wxstaticboxsizer} |
2 | ||
4130b487 RR |
3 | wxStaticBoxSizer is a sizer derived from wxBoxSizer but adds a static |
4 | box around the sizer. Note that this static box has to be created | |
5 | separately. | |
8fe05782 | 6 | |
9c884972 | 7 | See also \helpref{wxSizer}{wxsizer}, \helpref{wxStaticBox}{wxstaticbox} and |
7e9a386e | 8 | \helpref{wxBoxSizer}{wxboxsizer}. |
8fe05782 VZ |
9 | |
10 | \wxheading{Derived from} | |
11 | ||
9c884972 RR |
12 | \helpref{wxBoxSizer}{wxboxsizer}\\ |
13 | \helpref{wxSizer}{wxsizer}\\ | |
14 | \helpref{wxObject}{wxobject} | |
8fe05782 VZ |
15 | |
16 | \latexignore{\rtfignore{\wxheading{Members}}} | |
17 | ||
8fe05782 VZ |
18 | \membersection{wxStaticBoxSizer::wxStaticBoxSizer}\label{wxstaticboxsizerwxstaticboxsizer} |
19 | ||
20 | \func{}{wxStaticBoxSizer}{\param{wxStaticBox* }{box}, \param{int }{orient}} | |
21 | ||
9c884972 RR |
22 | Constructor. It takes an associated static box and the orientation {\it orient} |
23 | as parameters - orient can be either of wxVERTICAL or wxHORIZONTAL. | |
8fe05782 VZ |
24 | |
25 | \membersection{wxStaticBoxSizer::GetStaticBox}\label{wxstaticboxsizergetstaticbox} | |
26 | ||
27 | \func{wxStaticBox*}{GetStaticBox}{\void} | |
28 | ||
7e9a386e JS |
29 | Returns the static box associated with the sizer. |
30 |