-\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::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::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.
-
-\membersection{wxGrid::SetColFormatCustom}\label{wxgridsetcolformatcustom}
-
-\func{void}{SetColFormatCustom}{\param{int }{col}, \param{const wxString\& }{typeName}}
-
-Sets the specified column to display data in a custom format.
-See the \helpref{wxGrid overview}{gridoverview} for more information on working
-with custom data types.
-
-\membersection{wxGrid::SetColLabelAlignment}\label{wxgridsetcollabelalignment}
-
-\func{void}{SetColLabelAlignment}{\param{int }{horiz}, \param{int }{vert}}
-
-Sets the horizontal and vertical alignment of column 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::SetColLabelSize}\label{wxgridsetcollabelsize}
-
-\func{void}{SetColLabelSize}{\param{int }{height}}
-
-Sets the height of the column labels.
-
-\membersection{wxGrid::SetColLabelValue}\label{wxgridsetcollabelvalue}
-
-\func{void}{SetColLabelValue}{\param{int }{col}, \param{const }{wxString\&}}
-
-Set the value for the given column label. If you are using a derived grid table you must
-override \helpref{wxGridTableBase::SetColLabelValue}{wxgridtablebasesetcollabelvalue}
-for this to have any effect.
-
-\membersection{wxGrid::SetColMinimalWidth}\label{wxgridsetcolminimalwidth}
-
-\func{void}{SetColMinimalWidth}{\param{int }{col}, \param{int }{width}}
-
-Sets the minimal width for the specified column. This should normally be called when creating the grid
-because it will not resize a column that is already narrower than the minimal width.
-
-\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.