]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/flexsizr.tex
Added ForceRefresh() to request immediate repainting of a grid.
[wxWidgets.git] / docs / latex / wx / flexsizr.tex
CommitLineData
f6bcfd97
BP
1\section{\class{wxFlexGridSizer}}\label{wxflexgridsizer}
2
3A flex grid sizer is a sizer which lays out its children in a two-dimensional
4table with all table fields in one row having the same
5height and all fields in one column having the same width.
6
7\wxheading{Derived from}
8
9\helpref{wxGridSizer}{wxsizer}\\
10\helpref{wxSizer}{wxsizer}\\
11\helpref{wxObject}{wxobject}
12
13\membersection{wxFlexGridSizer::wxFlexGridSizer}\label{wxflexgridsizerwxflexgridsizer}
14
15\func{}{wxFlexGridSizer}{\param{int }{rows}, \param{int }{cols}, \param{int }{vgap}, \param{int }{hgap}}
16
17\func{}{wxFlexGridSizer}{\param{int }{cols}, \param{int }{vgap = 0}, \param{int }{hgap = 0}}
18
19Constructor for a wxGridSizer. {\it rows} and {\it cols} determine the number of
20columns and rows in the sizer - if either of the parameters is zero, it will be
21calculated to form the total number of children in the sizer, thus making the
22sizer grow dynamically. {\it vgap} and {\it hgap} define extra space between
23all children.
24