1 \section{\class{wxGridSizer
}}\label{wxgridsizer
}
3 A grid sizer is a sizer which lays out its children in a two-dimensional
4 table with all table fields having the same size,
5 i.e. the width of each field is the width of the widest child,
6 the height of each field is the height of the tallest child.
8 \wxheading{Derived from
}
10 \helpref{wxSizer
}{wxsizer
}\\
11 \helpref{wxObject
}{wxobject
}
15 \helpref{wxSizer
}{wxsizer
},
\helpref{Sizer overview
}{sizeroverview
}
17 \membersection{wxGridSizer::wxGridSizer
}\label{wxgridsizerwxgridsizer
}
19 \func{}{wxGridSizer
}{\param{int
}{rows
},
\param{int
}{cols
},
\param{int
}{vgap
},
\param{int
}{hgap
}}
21 \func{}{wxGridSizer
}{\param{int
}{cols
},
\param{int
}{vgap =
0},
\param{int
}{hgap =
0}}
23 Constructor for a wxGridSizer.
{\it rows
} and
{\it cols
} determine the number of
24 columns and rows in the sizer - if either of the parameters is zero, it will be
25 calculated to form the total number of children in the sizer, thus making the
26 sizer grow dynamically.
{\it vgap
} and
{\it hgap
} define extra space between
29 \membersection{wxGridSizer::GetCols
}\label{wxgridsizergetcols
}
33 Returns the number of columns in the sizer.
36 \membersection{wxGridSizer::GetHGap
}\label{wxgridsizergethgap
}
40 Returns the horizontal gap (in pixels) between cells in the sizer.
43 \membersection{wxGridSizer::GetRows
}\label{wxgridsizergetrows
}
47 Returns the number of rows in the sizer.
50 \membersection{wxGridSizer::GetVGap
}\label{wxgridsizergetvgap
}
54 Returns the vertical gap (in pixels) between the cells in the sizer.
57 \membersection{wxGridSizer::SetCols
}\label{wxgridsizersetcols
}
59 \func{void
}{SetCols
}{\param{int
}{cols
}}
61 Sets the number of columns in the sizer.
64 \membersection{wxGridSizer::SetHGap
}\label{wxgridsizersethgap
}
66 \func{void
}{SetHGap
}{\param{int
}{gap
}}
68 Sets the horizontal gap (in pixels) between cells in the sizer.
71 \membersection{wxGridSizer::SetRows
}\label{wxgridsizersetrows
}
73 \func{void
}{SetRows
}{\param{int
}{rows
}}
75 Sets the number of rows in the sizer.
78 \membersection{wxGridSizer::SetVGap
}\label{wxgridsizersetvgap
}
80 \func{void
}{SetVGap
}{\param{int
}{gap
}}
82 Sets the vertical gap (in pixels) between the cells in the sizer.