-\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\&}{ value}}
-
-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.
-
-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\&}{ colour}}
-
-Sets the default background colour for grid cells.
-
-\membersection{wxGrid::SetDefaultCellFont}\label{wxgridsetdefaultcellfont}
-
-\func{void}{SetDefaultCellFont}{\param{const wxFont\&}{ font}}
-
-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\&}{colour}}
-
-Sets the colour used to draw grid lines.
-
-\membersection{wxGrid::SetLabelBackgroundColour}\label{wxgridsetlabelbackgroundcolour}
-
-\func{void}{SetLabelBackgroundColour}{\param{const wxColour\&}{ colour}}