-\membersection{wxGrid::SetColSize}\label{wxgridsetcolsize}
-
-\func{void}{SetColSize}{\param{int }{col}, \param{int }{width}}
-
-Sets the width of the specified column.
-
-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::SetDefaultCellAlignment}\label{wxgridsetdefaultcellalignment}
-
-\func{void}{SetDefaultCellAlignment}{\param{int }{horiz}, \param{int }{vert}}
-
-Sets the default horizontal and vertial alignment for grid cell 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::SetDefaultCellBackgroundColour}\label{wxgridsetdefaultcellbackgroundcolour}
-
-\func{void}{SetDefaultCellBackgroundColour}{\param{const }{wxColour\&}}
-
-Sets the default background colour for grid cells.
-
-\membersection{wxGrid::SetDefaultCellFont}\label{wxgridsetdefaultcellfont}
-
-\func{void}{SetDefaultCellFont}{\param{const }{wxFont\&}}
-
-Sets the default font to be used for grid cell text.
-
-\membersection{wxGrid::SetDefaultEditor}\label{wxgridsetdefaulteditor}
-
-\func{void}{SetDefaultEditor}{\param{wxGridCellEditor* }{editor}}
-
-Sets the default editor for grid cells. The grid will take ownership of the pointer.
-
-See \helpref{wxGridCellEditor}{wxgridcelleditor} and
-the \helpref{wxGrid overview}{gridoverview} for more information about cell editors and renderers.
-
-\membersection{wxGrid::SetDefaultRenderer}\label{wxgridsetdefaultrenderer}
-
-\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\&}}
-
-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}