-\membersection{wxGrid::SaveEditControlValue}\label{wxgridsaveeditcontrolvalue}
-
-\func{void}{SaveEditControlValue}{\void}
-
-Sets the value of the current grid cell to the current in-place edit control value.
-This is called automatically when the grid cursor moves from the current cell to a
-new cell. It is also a good idea to call this function when closing a grid since
-any edits to the final cell location will not be saved otherwise.
-
-\membersection{wxGrid::SelectAll}\label{wxgridselectall}
-
-\func{void}{SelectAll}{\void}
-
-Selects all cells in the grid.
-
-\membersection{wxGrid::SelectBlock}\label{wxgridselectblock}
-
-\func{void}{SelectBlock}{\param{int }{topRow}, \param{int }{leftCol},
-\param{int }{bottomRow}, \param{int }{rightCol}, \param{bool }{addToSelected = FALSE}}
-
-\func{void}{SelectBlock}{\param{const wxGridCellCoords\& }{topLeft},
-\param{const wxGridCellCoords\& }{bottomRight}, \param{bool }{addToSelected = FALSE}}
-
-Selects a rectangular block of cells. If addToSelected is FALSE then any existing selection will be
-deselected; if TRUE the column will be added to the existing selection.
-
-\membersection{wxGrid::SelectCol}\label{wxgridselectcol}
-
-\func{void}{SelectCol}{\param{int }{col}, \param{bool }{addToSelected = FALSE}}
-
-Selects the specified column. If addToSelected is FALSE then any existing selection will be
-deselected; if TRUE the column will be added to the existing selection.
-
-\membersection{wxGrid::SelectRow}\label{wxgridselectrow}
-
-\func{void}{SelectRow}{\param{int }{row}, \param{bool }{addToSelected = FALSE}}
-
-Selects the specified row. If addToSelected is FALSE then any existing selection will be
-deselected; if TRUE the row will be added to the existing selection.
-
-\membersection{wxGrid::SetCellAlignment}\label{wxgridsetcellalignment}
-
-\func{void}{SetCellAlignment}{\param{int }{row}, \param{int }{col}, \param{int }{horiz}, \param{int }{vert}}
-
-Sets the horizontal and vertial alignment for grid cell text at the specified location.
-
-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::SetCellEditor}\label{wxgridsetcelleditor}
-
-\func{void}{SetCellEditor}{\param{int }{row}, \param{int }{col}, \param{wxGridCellEditor* }{editor}}
-
-Sets the editor for the grid cell at the specified location.
-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::SetCellFont}\label{wxgridsetcellfont}
-
-\func{void}{SetCellFont}{\param{int }{row}, \param{int }{col}, \param{const }{wxFont\&}}
-
-Sets the font for text in the grid cell at the specified location.
-
-\membersection{wxGrid::SetCellRenderer}\label{wxgridsetcellrenderer}
-
-\func{void}{SetCellRenderer}{\param{int }{row}, \param{int }{col}, \param{wxGridCellRenderer* }{renderer}}
-
-Sets the renderer for the grid cell at the specified location.
-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::SetCellTextColour}\label{wxgridsetcelltextcolour}
-
-\func{void}{SetCellTextColour}{\param{int }{row}, \param{int }{col}, \param{const }{wxColour\&}}
-
-Sets the text colour for the grid cell at the specified location.
-
-\membersection{wxGrid::SetCellValue}\label{wxgridsetcellvalue}
-
-\func{void}{SetCellValue}{\param{int }{row}, \param{int }{col}, \param{const wxString\& }{s}}
-
-\func{void}{SetCellValue}{\param{const wxGridCellCoords\& }{coords}, \param{const wxString\& }{s}}
-
-Sets the string value for the cell at the specified location. For simple applications where a
-grid object automatically uses a default grid table of string values you use this function together
-with \helpref{wxGrid::GetCellValue}{wxgridgetcellvalue} to access cell values.
-
-For more complex applications where you have derived your own grid table class that contains
-various data types (e.g. numeric, boolean or user-defined custom types) then you only use this
-function for those cells that contain string values.
-
-See \helpref{wxGridTableBase::CanSetValueAs}{wxgridtablebasecangetvalueas}
-and the \helpref{wxGrid overview}{gridoverview} for more information.
-
-\membersection{wxGrid::SetColAttr}\label{wxgridsetcolattr}
-
-\func{void}{SetColAttr}{\param{int }{col}, \param{wxGridCellAttr* }{attr}}
-
-Sets the cell attributes for all cells in the specified column.
-
-For more information about controlling grid cell attributes see the
-\helpref{wxGridCellAttr}{wxgridcellattr} cell attribute class and the
-\helpref{wxGrid classes overview}{gridoverview}.
-
-\membersection{wxGrid::SetColFormatBool}\label{wxgridsetcolformatbool}
-
-\func{void}{SetColFormatBool}{\param{int }{col}}
-
-Sets the specified column to display boolean values. wxGrid displays boolean values with a checkbox.
-
-\membersection{wxGrid::SetColFormatNumber}\label{wxgridsetcolformatnumber}
-
-\func{void}{SetColFormatNumber}{\param{int }{col}}
-
-Sets the specified column to display integer values.
-
-\membersection{wxGrid::SetColFormatFloat}\label{wxgridsetcolformatfloat}
-
-\func{void}{SetColFormatFloat}{\param{int }{col}, \param{int }{width = -1}, \param{int }{precision = -1}}
-
-Sets the specified column to display floating point values with the given width and precision.