]>
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 | |
8fe05782 VZ |
7 | \wxheading{Derived from} |
8 | ||
9c884972 RR |
9 | \helpref{wxBoxSizer}{wxboxsizer}\\ |
10 | \helpref{wxSizer}{wxsizer}\\ | |
11 | \helpref{wxObject}{wxobject} | |
8fe05782 | 12 | |
0bf97466 RN |
13 | \wxheading{Include files} |
14 | ||
15 | <wx/sizer.h> | |
16 | ||
1c0c339c JS |
17 | \wxheading{See also} |
18 | ||
19 | \helpref{wxSizer}{wxsizer}, \helpref{wxStaticBox}{wxstaticbox}, \helpref{wxBoxSizer}{wxboxsizer}, \helpref{Sizer overview}{sizeroverview} | |
20 | ||
8fe05782 VZ |
21 | \latexignore{\rtfignore{\wxheading{Members}}} |
22 | ||
8fe05782 VZ |
23 | \membersection{wxStaticBoxSizer::wxStaticBoxSizer}\label{wxstaticboxsizerwxstaticboxsizer} |
24 | ||
25 | \func{}{wxStaticBoxSizer}{\param{wxStaticBox* }{box}, \param{int }{orient}} | |
26 | ||
f6bcfd97 | 27 | Constructor. It takes an associated static box and the orientation {\it orient} |
9c884972 | 28 | as parameters - orient can be either of wxVERTICAL or wxHORIZONTAL. |
8fe05782 VZ |
29 | |
30 | \membersection{wxStaticBoxSizer::GetStaticBox}\label{wxstaticboxsizergetstaticbox} | |
31 | ||
32 | \func{wxStaticBox*}{GetStaticBox}{\void} | |
33 | ||
7e9a386e JS |
34 | Returns the static box associated with the sizer. |
35 |