]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/sbsizer.tex
add Create to wxDocParentFrame
[wxWidgets.git] / docs / latex / wx / sbsizer.tex
1 \section{\class{wxStaticBoxSizer}}\label{wxstaticboxsizer}
2
3 wxStaticBoxSizer is a sizer derived from wxBoxSizer but adds a static
4 box around the sizer. This static box may be either created independently or
5 the sizer may create it itself as a convenience. In any case, the sizer owns
6 the \helpref{wxStaticBox}{wxstaticbox} control and will delete it if it is
7 deleted.
8
9 \wxheading{Derived from}
10
11 \helpref{wxBoxSizer}{wxboxsizer}\\
12 \helpref{wxSizer}{wxsizer}\\
13 \helpref{wxObject}{wxobject}
14
15 \wxheading{Include files}
16
17 <wx/sizer.h>
18
19 \wxheading{See also}
20
21 \helpref{wxSizer}{wxsizer}, \helpref{wxStaticBox}{wxstaticbox}, \helpref{wxBoxSizer}{wxboxsizer}, \helpref{Sizer overview}{sizeroverview}
22
23 \latexignore{\rtfignore{\wxheading{Members}}}
24
25
26 \membersection{wxStaticBoxSizer::wxStaticBoxSizer}\label{wxstaticboxsizerwxstaticboxsizer}
27
28 \func{}{wxStaticBoxSizer}{\param{wxStaticBox* }{box}, \param{int }{orient}}
29
30 \func{}{wxStaticBoxSizer}{\param{int }{orient}, \param{wxWindow }{*parent}, \param{const wxString\& }{label = wxEmptyString}}
31
32 The first constructor uses an already existing static box. It takes the
33 associated static box and the orientation \arg{orient}, which can be either
34 \texttt{wxVERTICAL} or \texttt{wxHORIZONTAL} as parameters.
35
36 The second one creates a new static box with the given label and parent window.
37
38
39 \membersection{wxStaticBoxSizer::GetStaticBox}\label{wxstaticboxsizergetstaticbox}
40
41 \func{wxStaticBox*}{GetStaticBox}{\void}
42
43 Returns the static box associated with the sizer.
44