-\membersection{wxGrid::SetDefaultColSize}\label{wxgridsetdefaultcolsize}
-
-\func{void}{SetDefaultColSize}{\param{int }{width}, \param{bool }{resizeExistingCols = FALSE}}
-
-Sets the default width for columns in the grid. This will only affect columns subsequently added to
-the grid unless resizeExistingCols is TRUE.
-
-\membersection{wxGrid::SetDefaultRowSize}\label{wxgridsetdefaultrowsize}
-
-\func{void}{SetDefaultRowSize}{\param{int }{height}, \param{bool }{resizeExistingRows = FALSE}}
-
-Sets the default height for rows in the grid. This will only affect rows subsequently added
-to the grid unless resizeExistingRows is TRUE.
-
-\membersection{wxGrid::SetGridCursor}\label{wxgridsetgridcursor}
-
-\func{void}{SetGridCursor}{\param{int }{row}, \param{int }{col}}
-
-Set the grid cursor to the specified cell.
-This function calls \helpref{wxGrid::MakeCellVisible}{wxgridmakecellvisible}.
-
-\membersection{wxGrid::SetGridLineColour}\label{wxgridsetgridlinecolour}
-
-\func{void}{SetGridLineColour}{\param{const }{wxColour\&}}
-
-Sets the colour used to draw grid lines.
-
-\membersection{wxGrid::SetLabelBackgroundColour}\label{wxgridsetlabelbackgroundcolour}
-
-\func{void}{SetLabelBackgroundColour}{\param{const }{wxColour\&}}
-
-Sets the background colour for row and column labels.
-
-\membersection{wxGrid::SetLabelFont}\label{wxgridsetlabelfont}
-
-\func{void}{SetLabelFont}{\param{const }{wxFont\&}}
-
-Sets the font for row and column labels.
-
-\membersection{wxGrid::SetLabelTextColour}\label{wxgridsetlabeltextcolour}
-
-\func{void}{SetLabelTextColour}{\param{const }{wxColour\&}}
-
-Sets the colour for row and column label text.
-
-\membersection{wxGrid::SetReadOnly}\label{wxgridsetreadonly}
-
-\func{void}{SetReadOnly}{\param{int }{row}, \param{int }{col}, \param{bool }{isReadOnly = TRUE}}
-
-Makes the cell at the specified location read-only or editable.
-See also \helpref{wxGrid::IsReadOnly}{wxgridisreadonly}.
-
-\membersection{wxGrid::SetRowAttr}\label{wxgridsetrowattr}
-
-\func{void}{SetRowAttr}{\param{int }{row}, \param{wxGridCellAttr* }{attr}}
-
-Sets the cell attributes for all cells in the specified row.
-See the \helpref{wxGridCellAttr}{wxgridcellattr} class for more information
-about controlling cell attributes.
-
-\membersection{wxGrid::SetRowLabelAlignment}\label{wxgridsetrowlabelalignment}
-
-\func{void}{SetRowLabelAlignment}{\param{int }{horiz}, \param{int }{vert}}
-
-Sets the horizontal and vertical alignment of row label text.
-
-Horizontal alignment should be one of wxALIGN_LEFT, wxALIGN_CENTRE or wxALIGN_RIGHT. \\
-Vertical alignment should be one of wxALIGN_TOP, wxALIGN_CENTRE or wxALIGN_BOTTOM.
-
-\membersection{wxGrid::SetRowLabelSize}\label{wxgridsetrowlabelsize}
-
-\func{void}{SetRowLabelSize}{\param{int }{width}}
-
-Sets the width of the row labels.
-
-\membersection{wxGrid::SetRowLabelValue}\label{wxgridsetrowlabelvalue}
-
-\func{void}{SetRowLabelValue}{\param{int }{row}, \param{const }{wxString\&}}
-
-Set the value for the given row label. If you are using a derived grid table you must
-override \helpref{wxGridTableBase::SetRowLabelValue}{wxgridtablebasesetrowlabelvalue}
-for this to have any effect.
-
-\membersection{wxGrid::SetRowMinimalHeight}\label{wxgridsetrowminimalheight}
-
-\func{void}{SetRowMinimalHeight}{\param{int }{row}, \param{int }{width}}
-
-Sets the minimal height for the specified row. This should normally be called when creating the grid
-because it will not resize a row that is already shorter than the minimal height.
-
-\membersection{wxGrid::SetRowSize}\label{wxgridsetrowsize}