-\func{void}{SetDefaultRenderer}{\param{wxGridCellRenderer* }{renderer}}
-
-Sets the default renderer for grid cells. The grid will take ownership of the pointer.
-
-See \helpref{wxGridCellRenderer}{wxgridcellrenderer} and
-the \helpref{wxGrid overview}{gridoverview} for more information about cell editors and renderers.
-
-\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\&}{colour}}
-
-Sets the colour used to draw grid lines.
-
-\membersection{wxGrid::SetLabelBackgroundColour}\label{wxgridsetlabelbackgroundcolour}
-
-\func{void}{SetLabelBackgroundColour}{\param{const wxColour\&}{ colour}}
-
-Sets the background colour for row and column labels.
-
-\membersection{wxGrid::SetLabelFont}\label{wxgridsetlabelfont}
-
-\func{void}{SetLabelFont}{\param{const wxFont\&}{ font}}
-
-Sets the font for row and column labels.
-
-\membersection{wxGrid::SetLabelTextColour}\label{wxgridsetlabeltextcolour}
-
-\func{void}{SetLabelTextColour}{\param{const wxColour\&}{ colour}}
-
-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\&}{ value}}
-
-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}
-
-\func{void}{SetRowSize}{\param{int }{row}, \param{int }{height}}
-
-Sets the height of the specified row.
-
-This function does not refresh the grid. If you are calling it outside of a BeginBatch / EndBatch
-block you can use \helpref{wxGrid::ForceRefresh}{wxgridforcerefresh} to see the changes.
-
-Automatically sizes the column to fit its contents. If setAsMin is TRUE the calculated width will
-also be set as the minimal width for the column.
-
-\wxheading{Note}
-
-wxGrid sets up arrays to store individual row and column sizes when non-default sizes are used.
-The memory requirements for this could become prohibitive if your grid is very large.
-
-\membersection{wxGrid::SetSelectionMode}\label{wxgridsetselectionmode}
-
-\func{void}{SetSelectionMode}{\param{wxGrid::wxGridSelectionModes}{ selmode}}
-
-Set the selection behaviour of the grid.