wxGrid

wxGrid

wxGrid
Functions for wxGrid class

wxGrid and its related classes are used for displaying and editing tabular data. They provide a rich set of features for display, editing, and interacting with a variety of data sources. For simple applications, and to help you get started, wxGrid is the only class you need to refer to directly. It will set up default instances of the other classes and manage them for you. For more complex applications you can derive your own classes for custom grid views, grid data tables, cell editors and renderers. The overview_grid has examples of simple and more complex applications, explains the relationship between the various grid classes and has a summary of the keyboard shortcuts and mouse functions provided by wxGrid.

A wxGridTableBase (not implemented in wx) class holds the actual data to be displayed by a wxGrid class. One or more wxGrid classes may act as a view for one table class. The default table class is called wxGridStringTable (not implemented in wx) and holds an array of strings. An instance of such a class is created by createGrid/4.

wxGridCellRenderer is the abstract base class for rendering contents in a cell. The following renderers are predefined:

The look of a cell can be further defined using wxGridCellAttr. An object of this type may be returned by wxGridTableBase::GetAttr() (not implemented in wx).

wxGridCellEditor is the abstract base class for editing the value of a cell. The following editors are predefined:

Please see wxGridEvent, wxGridSizeEvent (not implemented in wx), wxGridRangeSelectEvent (not implemented in wx), and wxGridEditorCreatedEvent (not implemented in wx) for the documentation of all event types you can use with wxGrid.

See: Overview grid, wxGridUpdateLocker (not implemented in wx)

This class is derived (and can use functions) from: wxScrolledWindow wxPanel wxWindow wxEvtHandler

wxWidgets docs: wxGrid

Default constructor.

You must call Create() (not implemented in wx) to really create the grid window and also call createGrid/4 or SetTable() (not implemented in wx) or AssignTable() (not implemented in wx) to initialize its contents.

Destructor.

This will also destroy the associated grid table unless you passed a table object to the grid and specified that the grid should not take ownership of the table (see SetTable() (not implemented in wx)).

Types

This = wxGrid()
Option = {numCols, integer()} | {updateLabels, boolean()}

Appends one or more new columns to the right of the grid.

The updateLabels argument is not used at present. If you are using a derived grid table class you will need to override wxGridTableBase::AppendCols() (not implemented in wx). See insertCols/2 for further information.

Return: true on success or false if appending columns failed.

Types

This = wxGrid()
Option = {numRows, integer()} | {updateLabels, boolean()}

Appends one or more new rows to the bottom of the grid.

The updateLabels argument is not used at present. If you are using a derived grid table class you will need to override wxGridTableBase::AppendRows() (not implemented in wx). See insertRows/2 for further information.

Return: true on success or false if appending rows failed.

Types

This = wxGrid()

Automatically sets the height and width of all rows and columns to fit their contents.

Types

This = wxGrid()
Col = integer()
Option = {setAsMin, boolean()}

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.

Types

This = wxGrid()

Types

This = wxGrid()
Option = {setAsMin, boolean()}

Automatically sizes all columns to fit their contents.

If setAsMin is true the calculated widths will also be set as the minimal widths for the columns.

Types

This = wxGrid()
Row = integer()
Option = {setAsMin, boolean()}

Automatically sizes the row to fit its contents.

If setAsMin is true the calculated height will also be set as the minimal height for the row.

Types

This = wxGrid()

Types

This = wxGrid()
Option = {setAsMin, boolean()}

Automatically sizes all rows to fit their contents.

If setAsMin is true the calculated heights will also be set as the minimal heights for the rows.

Types

This = wxGrid()

Increments the grid's batch count.

When the count is greater than zero repainting of the grid is suppressed. Each call to BeginBatch must be matched by a later call to endBatch/1. Code that does a lot of grid modification can be enclosed between beginBatch/1 and endBatch/1 calls to avoid screen flicker. The final endBatch/1 call will cause the grid to be repainted.

Notice that you should use wxGridUpdateLocker (not implemented in wx) which ensures that there is always a matching endBatch/1 call for this beginBatch/1 if possible instead of calling this method directly.

Types

This = wxGrid()
TopLeft = BottomRight = {R :: integer(), C :: integer()}

Convert grid cell coordinates to grid window pixel coordinates.

This function returns the rectangle that encloses the block of cells limited by topLeft and bottomRight cell in device coords and clipped to the client size of the grid window.

Since: 3.1.3 Parameter gridWindow has been added.

See: cellToRect/3

Types

This = wxGrid()

Return true if the dragging of cells is enabled or false otherwise.

Types

This = wxGrid()

Returns true if columns can be moved by dragging with the mouse.

Columns can be moved by dragging on their labels.

Types

This = wxGrid()
Col = integer()

Returns true if the given column can be resized by dragging with the mouse.

This function returns true if resizing the columns interactively is globally enabled, i.e. if disableDragColSize/1 hadn't been called, and if this column wasn't explicitly marked as non-resizable with DisableColResize() (not implemented in wx).

Types

This = wxGrid()

Return true if the dragging of grid lines to resize rows and columns is enabled or false otherwise.

Types

This = wxGrid()

Returns true if the in-place edit control for the current grid cell can be used and false otherwise.

This function always returns false for the read-only cells.

Types

This = wxGrid()
Row = Col = integer()

Return the rectangle corresponding to the grid cell's size and position in logical coordinates.

See: blockToDeviceRect/3

Types

This = wxGrid()

Clears all data in the underlying grid table and repaints the grid.

The table is not deleted by this function. If you are using a derived table class then you need to override wxGridTableBase::Clear() (not implemented in wx) for this function to have any effect.

Types

This = wxGrid()

Deselects all cells that are currently selected.

Types

This = wxGrid()
NumRows = NumCols = integer()
Option = {selmode, wx:wx_enum()}

Creates a grid with the specified initial number of rows and columns.

Call this directly after the grid constructor. When you use this function wxGrid will create and manage a simple table of string values for you. All of the grid data will be stored in memory.

For applications with more complex data types or relationships, or for dealing with very large datasets, you should derive your own grid table class and pass a table object to the grid with SetTable() (not implemented in wx) or AssignTable() (not implemented in wx).

Types

This = wxGrid()
Option =
    {pos, integer()} |
    {numCols, integer()} |
    {updateLabels, boolean()}

Deletes one or more columns from a grid starting at the specified position.

The updateLabels argument is not used at present. If you are using a derived grid table class you will need to override wxGridTableBase::DeleteCols() (not implemented in wx). See insertCols/2 for further information.

Return: true on success or false if deleting columns failed.

Types

This = wxGrid()
Option =
    {pos, integer()} |
    {numRows, integer()} |
    {updateLabels, boolean()}

Deletes one or more rows from a grid starting at the specified position.

The updateLabels argument is not used at present. If you are using a derived grid table class you will need to override wxGridTableBase::DeleteRows() (not implemented in wx). See insertRows/2 for further information.

Return: true on success or false if deleting rows failed.

Types

This = wxGrid()

Disables in-place editing of grid cells.

Equivalent to calling EnableCellEditControl(false).

Types

This = wxGrid()

Disables column sizing by dragging with the mouse.

Equivalent to passing false to enableDragColSize/2.

Types

This = wxGrid()

Disable mouse dragging of grid lines to resize rows and columns.

Equivalent to passing false to enableDragGridSize/2

Types

This = wxGrid()

Disables row sizing by dragging with the mouse.

Equivalent to passing false to enableDragRowSize/2.

Types

This = wxGrid()

Types

This = wxGrid()
Option = {enable, boolean()}

Enables or disables in-place editing of grid cell data.

Enabling in-place editing generates wxEVT_GRID_EDITOR_SHOWN and, if it isn't vetoed by the application, shows the in-place editor which allows the user to change the cell value.

Disabling in-place editing does nothing if the in-place editor isn't currently shown, otherwise the wxEVT_GRID_EDITOR_HIDDEN event is generated but, unlike the "shown" event, it can't be vetoed and the in-place editor is dismissed unconditionally.

Note that it is an error to call this function if the current cell is read-only, use canEnableCellControl/1 to check for this precondition.

Types

This = wxGrid()

Types

This = wxGrid()
Option = {enable, boolean()}

Enables or disables column sizing by dragging with the mouse.

See: DisableColResize() (not implemented in wx)

Types

This = wxGrid()

Types

This = wxGrid()
Option = {enable, boolean()}

Enables or disables row and column resizing by dragging gridlines with the mouse.

Types

This = wxGrid()

Types

This = wxGrid()
Option = {enable, boolean()}

Enables or disables row sizing by dragging with the mouse.

See: DisableRowResize() (not implemented in wx)

Types

This = wxGrid()
Edit = boolean()

Makes the grid globally editable or read-only.

If the edit argument is false this function sets the whole grid as read-only. If the argument is true the grid is set to the default state where cells may be editable. In the default state you can set single grid cells and whole rows and columns to be editable or read-only via wxGridCellAttr:setReadOnly/2. For single cells you can also use the shortcut function setReadOnly/4.

For more information about controlling grid cell attributes see the wxGridCellAttr class and the overview_grid.

Types

This = wxGrid()

Types

This = wxGrid()
Option = {enable, boolean()}

Turns the drawing of grid lines on or off.

Types

This = wxGrid()

Decrements the grid's batch count.

When the count is greater than zero repainting of the grid is suppressed. Each previous call to beginBatch/1 must be matched by a later call to endBatch/1. Code that does a lot of grid modification can be enclosed between beginBatch/1 and endBatch/1 calls to avoid screen flicker. The final endBatch/1 will cause the grid to be repainted.

See: wxGridUpdateLocker (not implemented in wx)

Types

This = wxGrid()

Causes immediate repainting of the grid.

Use this instead of the usual wxWindow:refresh/2.

Types

This = wxGrid()

Returns the number of times that beginBatch/1 has been called without (yet) matching calls to endBatch/1.

While the grid's batch count is greater than zero the display will not be updated.

Types

This = wxGrid()
Row = Col = integer()

Sets the arguments to the horizontal and vertical text alignment values for the grid cell at the specified location.

Horizontal alignment will be one of wxALIGN_LEFT, wxALIGN_CENTRE or wxALIGN_RIGHT.

Vertical alignment will be one of wxALIGN_TOP, wxALIGN_CENTRE or wxALIGN_BOTTOM.

Types

This = wxGrid()
Row = Col = integer()

Returns the background colour of the cell at the specified location.

Types

This = wxGrid()
Row = Col = integer()

Returns a pointer to the editor for the cell at the specified location.

See wxGridCellEditor and the overview_grid for more information about cell editors and renderers.

The caller must call DecRef() on the returned pointer.

Types

This = wxGrid()
Row = Col = integer()

Returns the font for text in the grid cell at the specified location.

Types

This = wxGrid()
Row = Col = integer()

Returns a pointer to the renderer for the grid cell at the specified location.

See wxGridCellRenderer and the overview_grid for more information about cell editors and renderers.

The caller must call DecRef() on the returned pointer.

Types

This = wxGrid()
Row = Col = integer()

Returns the text colour for the grid cell at the specified location.

Types

This = wxGrid()
Coords = {R :: integer(), C :: integer()}

Returns the string contained in 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 setCellValue/4 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 wxGridTableBase::CanGetValueAs() (not implemented in wx) and the overview_grid for more information.

Types

This = wxGrid()
Row = Col = integer()

Returns the string contained in 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 setCellValue/4 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 wxGridTableBase::CanGetValueAs() (not implemented in wx) and the overview_grid for more information.

Types

This = wxGrid()

Sets the arguments to the current column label alignment values.

Horizontal alignment will be one of wxALIGN_LEFT, wxALIGN_CENTRE or wxALIGN_RIGHT.

Vertical alignment will be one of wxALIGN_TOP, wxALIGN_CENTRE or wxALIGN_BOTTOM.

Types

This = wxGrid()

Returns the current height of the column labels.

Types

This = wxGrid()
Col = integer()

Returns the specified column label.

The default grid table class provides column labels of the form A,B...Z,AA,AB...ZZ,AAA... If you are using a custom grid table you can override wxGridTableBase::GetColLabelValue() (not implemented in wx) to provide your own labels.

Types

This = wxGrid()

Returns the default cell alignment.

Horizontal alignment will be one of wxALIGN_LEFT, wxALIGN_CENTRE or wxALIGN_RIGHT.

Vertical alignment will be one of wxALIGN_TOP, wxALIGN_CENTRE or wxALIGN_BOTTOM.

See: setDefaultCellAlignment/3

Types

This = wxGrid()

Returns the current default background colour for grid cells.

Types

This = wxGrid()

Returns the current default font for grid cell text.

Types

This = wxGrid()

Returns the current default colour for grid cell text.

Types

This = wxGrid()

Returns the default height for column labels.

Types

This = wxGrid()

Returns the current default width for grid columns.

Types

This = wxGrid()
C = {R :: integer(), C :: integer()}

Returns the default editor for the specified cell.

The base class version returns the editor appropriate for the current cell type but this method may be overridden in the derived classes to use custom editors for some cells by default.

Notice that the same may be achieved in a usually simpler way by associating a custom editor with the given cell or cells.

The caller must call DecRef() on the returned pointer.

Types

This = wxGrid()
Row = Col = integer()

Returns the default editor for the specified cell.

The base class version returns the editor appropriate for the current cell type but this method may be overridden in the derived classes to use custom editors for some cells by default.

Notice that the same may be achieved in a usually simpler way by associating a custom editor with the given cell or cells.

The caller must call DecRef() on the returned pointer.

Types

This = wxGrid()

Returns the default editor for the cells containing values of the given type.

The base class version returns the editor which was associated with the specified typeName when it was registered registerDataType/4 but this function may be overridden to return something different. This allows overriding an editor used for one of the standard types.

The caller must call DecRef() on the returned pointer.

Types

This = wxGrid()

Returns a pointer to the current default grid cell renderer.

See wxGridCellRenderer and the overview_grid for more information about cell editors and renderers.

The caller must call DecRef() on the returned pointer.

Types

This = wxGrid()
Row = Col = integer()

Returns the default renderer for the given cell.

The base class version returns the renderer appropriate for the current cell type but this method may be overridden in the derived classes to use custom renderers for some cells by default.

The caller must call DecRef() on the returned pointer.

Types

This = wxGrid()

Returns the default width for the row labels.

Types

This = wxGrid()

Returns the current default height for grid rows.

Types

This = wxGrid()

Returns the current grid cell column position.

See: GetGridCursorCoords() (not implemented in wx)

Types

This = wxGrid()

Returns the current grid cell row position.

See: GetGridCursorCoords() (not implemented in wx)

Types

This = wxGrid()

Returns the colour used for grid lines.

See: GetDefaultGridLinePen() (not implemented in wx)

Types

This = wxGrid()

Returns true if drawing of grid lines is turned on, false otherwise.

Types

This = wxGrid()

Returns the colour used for the background of row and column labels.

Types

This = wxGrid()

Returns the colour used for row and column label text.

Types

This = wxGrid()

Returns the total number of grid columns.

This is the same as the number of columns in the underlying grid table.

Types

This = wxGrid()

Returns the total number of grid rows.

This is the same as the number of rows in the underlying grid table.

Types

This = wxGrid()
Row = Col = integer()

Returns the attribute for the given cell creating one if necessary.

If the cell already has an attribute, it is returned. Otherwise a new attribute is created, associated with the cell and returned. In any case the caller must call DecRef() on the returned pointer.

Prefer to use GetOrCreateCellAttrPtr() (not implemented in wx) to avoid the need to call DecRef() on the returned pointer.

This function may only be called if CanHaveAttributes() (not implemented in wx) returns true.

Types

This = wxGrid()

Returns the alignment used for row labels.

Horizontal alignment will be one of wxALIGN_LEFT, wxALIGN_CENTRE or wxALIGN_RIGHT.

Vertical alignment will be one of wxALIGN_TOP, wxALIGN_CENTRE or wxALIGN_BOTTOM.

Types

This = wxGrid()

Returns the current width of the row labels.

Types

This = wxGrid()
Row = integer()

Returns the specified row label.

The default grid table class provides numeric row labels. If you are using a custom grid table you can override wxGridTableBase::GetRowLabelValue() (not implemented in wx) to provide your own labels.

Types

This = wxGrid()

Returns an array of individually selected cells.

Notice that this array does not contain all the selected cells in general as it doesn't include the cells selected as part of column, row or block selection. You must use this method, getSelectedCols/1, getSelectedRows/1 and getSelectionBlockTopLeft/1 and getSelectionBlockBottomRight/1 methods to obtain the entire selection in general.

Please notice this behaviour is by design and is needed in order to support grids of arbitrary size (when an entire column is selected in a grid with a million of columns, we don't want to create an array with a million of entries in this function, instead it returns an empty array and getSelectedCols/1 returns an array containing one element).

The function can be slow for the big grids, use GetSelectedBlocks() (not implemented in wx) in the new code.

Types

This = wxGrid()

Returns an array of selected columns.

Please notice that this method alone is not sufficient to find all the selected columns as it contains only the columns which were individually selected but not those being part of the block selection or being selected in virtue of all of their cells being selected individually, please see getSelectedCells/1 for more details.

The function can be slow for the big grids, use GetSelectedBlocks() (not implemented in wx) in the new code.

Types

This = wxGrid()

Returns an array of selected rows.

Please notice that this method alone is not sufficient to find all the selected rows as it contains only the rows which were individually selected but not those being part of the block selection or being selected in virtue of all of their cells being selected individually, please see getSelectedCells/1 for more details.

The function can be slow for the big grids, use GetSelectedBlocks() (not implemented in wx) in the new code.

Types

This = wxGrid()

Returns the colour used for drawing the selection background.

Types

This = wxGrid()

Returns an array of the top left corners of blocks of selected cells.

Please see getSelectedCells/1 for more information about the selection representation in wxGrid.

The function can be slow for the big grids, use GetSelectedBlocks() (not implemented in wx) in the new code.

See: getSelectionBlockBottomRight/1

Types

This = wxGrid()

Returns an array of the bottom right corners of blocks of selected cells.

Please see getSelectedCells/1 for more information about the selection representation in wxGrid.

The function can be slow for the big grids, use GetSelectedBlocks() (not implemented in wx) in the new code.

See: getSelectionBlockTopLeft/1

Types

This = wxGrid()

Returns the colour used for drawing the selection foreground.

Types

This = wxGrid()

Return the main grid window containing the grid cells.

This window is always shown.

Types

This = wxGrid()

Return the row labels window.

This window is not shown if the row labels were hidden using HideRowLabels() (not implemented in wx).

Types

This = wxGrid()

Return the column labels window.

This window is not shown if the columns labels were hidden using HideColLabels() (not implemented in wx).

Depending on whether UseNativeColHeader() (not implemented in wx) was called or not this can be either a wxHeaderCtrl (not implemented in wx) or a plain wxWindow. This function returns a valid window pointer in either case but in the former case you can also use GetGridColHeader() (not implemented in wx) to access it if you need wxHeaderCtrl-specific functionality.

Types

This = wxGrid()

Return the window in the top left grid corner.

This window is shown only of both columns and row labels are shown and normally doesn't contain anything. Clicking on it is handled by wxGrid however and can be used to select the entire grid.

Types

This = wxGrid()

Hides the in-place cell edit control.

Types

This = wxGrid()
Option =
    {pos, integer()} |
    {numCols, integer()} |
    {updateLabels, boolean()}

Inserts one or more new columns into a grid with the first new column at the specified position.

Notice that inserting the columns in the grid requires grid table cooperation: when this method is called, grid object begins by requesting the underlying grid table to insert new columns. If this is successful the table notifies the grid and the grid updates the display. For a default grid (one where you have called createGrid/4) this process is automatic. If you are using a custom grid table (specified with SetTable() (not implemented in wx) or AssignTable() (not implemented in wx)) then you must override wxGridTableBase::InsertCols() (not implemented in wx) in your derived table class.

Return: true if the columns were successfully inserted, false if an error occurred (most likely the table couldn't be updated).

Types

This = wxGrid()
Option =
    {pos, integer()} |
    {numRows, integer()} |
    {updateLabels, boolean()}

Inserts one or more new rows into a grid with the first new row at the specified position.

Notice that you must implement wxGridTableBase::InsertRows() (not implemented in wx) if you use a grid with a custom table, please see insertCols/2 for more information.

Return: true if the rows were successfully inserted, false if an error occurred (most likely the table couldn't be updated).

Types

This = wxGrid()

Returns true if the in-place edit control is currently enabled.

Types

This = wxGrid()

Returns false if the whole grid has been set as read-only or true otherwise.

See enableEditing/2 for more information about controlling the editing status of grid cells.

Types

This = wxGrid()
Row = Col = integer()

Returns true if the given cell is selected.

Types

This = wxGrid()

Returns true if there are currently any selected cells, rows, columns or blocks.

Types

This = wxGrid()
Coords = {R :: integer(), C :: integer()}
Option = {wholeCellVisible, boolean()}

Returns true if a cell is either entirely or at least partially visible in the grid window.

By default, the cell must be entirely visible for this function to return true but if wholeCellVisible is false, the function returns true even if the cell is only partially visible.

Types

This = wxGrid()
Row = Col = integer()
Option = {wholeCellVisible, boolean()}

Returns true if a cell is either entirely or at least partially visible in the grid window.

By default, the cell must be entirely visible for this function to return true but if wholeCellVisible is false, the function returns true even if the cell is only partially visible.

Types

This = wxGrid()
Coords = {R :: integer(), C :: integer()}

Brings the specified cell into the visible grid cell area with minimal scrolling.

Does nothing if the cell is already visible.

Types

This = wxGrid()
Row = Col = integer()

Brings the specified cell into the visible grid cell area with minimal scrolling.

Does nothing if the cell is already visible.

Types

This = wxGrid()
ExpandSelection = boolean()

Moves the grid cursor down by one row.

If a block of cells was previously selected it will expand if the argument is true or be cleared if the argument is false.

Types

This = wxGrid()
ExpandSelection = boolean()

Moves the grid cursor left by one column.

If a block of cells was previously selected it will expand if the argument is true or be cleared if the argument is false.

Types

This = wxGrid()
ExpandSelection = boolean()

Moves the grid cursor right by one column.

If a block of cells was previously selected it will expand if the argument is true or be cleared if the argument is false.

Types

This = wxGrid()
ExpandSelection = boolean()

Moves the grid cursor up by one row.

If a block of cells was previously selected it will expand if the argument is true or be cleared if the argument is false.

Types

This = wxGrid()
ExpandSelection = boolean()

Moves the grid cursor down in the current column such that it skips to the beginning or end of a block of non-empty cells.

If a block of cells was previously selected it will expand if the argument is true or be cleared if the argument is false.

Types

This = wxGrid()
ExpandSelection = boolean()

Moves the grid cursor left in the current row such that it skips to the beginning or end of a block of non-empty cells.

If a block of cells was previously selected it will expand if the argument is true or be cleared if the argument is false.

Types

This = wxGrid()
ExpandSelection = boolean()

Moves the grid cursor right in the current row such that it skips to the beginning or end of a block of non-empty cells.

If a block of cells was previously selected it will expand if the argument is true or be cleared if the argument is false.

Types

This = wxGrid()
ExpandSelection = boolean()

Moves the grid cursor up in the current column such that it skips to the beginning or end of a block of non-empty cells.

If a block of cells was previously selected it will expand if the argument is true or be cleared if the argument is false.

Types

This = wxGrid()

Moves the grid cursor down by some number of rows so that the previous bottom visible row becomes the top visible row.

Types

This = wxGrid()

Moves the grid cursor up by some number of rows so that the previous top visible row becomes the bottom visible row.

Register a new data type.

The data types allow to naturally associate specific renderers and editors to the cells containing values of the given type. For example, the grid automatically registers a data type with the name wxGRID_VALUE_STRING which uses wxGridCellStringRenderer and wxGridCellTextEditor as its renderer and editor respectively - this is the data type used by all the cells of the default wxGridStringTable (not implemented in wx), so this renderer and editor are used by default for all grid cells.

However if a custom table returns wxGRID_VALUE_BOOL from its wxGridTableBase::GetTypeName() (not implemented in wx) method, then wxGridCellBoolRenderer and wxGridCellBoolEditor are used for it because the grid also registers a boolean data type with this name.

And as this mechanism is completely generic, you may register your own data types using your own custom renderers and editors. Just remember that the table must identify a cell as being of the given type for them to be used for this cell.

Types

This = wxGrid()

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.

Types

This = wxGrid()

Selects all cells in the grid.

Types

This = wxGrid()
TopLeft = BottomRight = {R :: integer(), C :: integer()}
Option = {addToSelected, boolean()}

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.

Types

This = wxGrid()
TopRow = LeftCol = BottomRow = RightCol = integer()

Types

This = wxGrid()
TopRow = LeftCol = BottomRow = RightCol = integer()
Option = {addToSelected, boolean()}

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.

Types

This = wxGrid()
Col = integer()
Option = {addToSelected, boolean()}

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.

This method won't select anything if the current selection mode is wxGridSelectRows.

Types

This = wxGrid()
Row = integer()
Option = {addToSelected, boolean()}

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.

This method won't select anything if the current selection mode is wxGridSelectColumns.

Types

This = wxGrid()
Row = Col = Horiz = Vert = integer()

Sets the horizontal and vertical 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.

Types

This = wxGrid()
Row = Col = integer()

Set the background colour for the given cell or all cells by default.

Types

This = wxGrid()
Row = Col = integer()

Sets the font for text in the grid cell at the specified location.

Types

This = wxGrid()
Row = Col = integer()

Sets the text colour for the given cell.

Types

This = wxGrid()
Coords = {R :: integer(), C :: integer()}

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 getCellValue/3 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 wxGridTableBase::CanSetValueAs() (not implemented in wx) and the overview_grid for more information.

Types

This = wxGrid()
Row = Col = integer()

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 getCellValue/3 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 wxGridTableBase::CanSetValueAs() (not implemented in wx) and the overview_grid for more information.

Types

This = wxGrid()
Col = integer()

Sets the specified column to display data in a custom format.

This method provides an alternative to defining a custom grid table which would return typeName from its GetTypeName() method for the cells in this column: while it doesn't really change the type of the cells in this column, it does associate the renderer and editor used for the cells of the specified type with them.

See the overview_grid for more information on working with custom data types.

Types

This = wxGrid()
Horiz = Vert = integer()

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.

Types

This = wxGrid()
Height = integer()

Sets the height of the column labels.

If height equals to wxGRID_AUTOSIZE then height is calculated automatically so that no label is truncated. Note that this could be slow for a large table.

Types

This = wxGrid()
Col = integer()

Set the value for the given column label.

If you are using a custom grid table you must override wxGridTableBase::SetColLabelValue() (not implemented in wx) for this to have any effect.

Types

This = wxGrid()
Col = Width = integer()

Sets the minimal width for the specified column col.

It is usually best to call this method during grid creation as calling it later will not resize the column to the given minimal width even if it is currently narrower than it.

width must be greater than the minimal acceptable column width as returned by getColMinimalAcceptableWidth/1.

Types

This = wxGrid()
Col = Width = integer()

Sets the width of the specified column.

Types

This = wxGrid()
Horiz = Vert = integer()

Sets the default horizontal and vertical 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.

Types

This = wxGrid()

Sets the default background colour for grid cells.

Types

This = wxGrid()

Sets the default font to be used for grid cell text.

Types

This = wxGrid()

Sets the current default colour for grid cell text.

Types

This = wxGrid()
Width = integer()
Option = {resizeExistingCols, boolean()}

Sets the default width for columns in the grid.

This will only affect columns subsequently added to the grid unless resizeExistingCols is true.

If width is less than getColMinimalAcceptableWidth/1, then the minimal acceptable width is used instead of it.

Types

This = wxGrid()
Height = integer()
Option = {resizeExistingRows, boolean()}

Sets the default height for rows in the grid.

This will only affect rows subsequently added to the grid unless resizeExistingRows is true.

If height is less than getRowMinimalAcceptableHeight/1, then the minimal acceptable height is used instead of it.

Types

This = wxGrid()
Coords = {R :: integer(), C :: integer()}

Set the grid cursor to the specified cell.

The grid cursor indicates the current cell and can be moved by the user using the arrow keys or the mouse.

Calling this function generates a wxEVT_GRID_SELECT_CELL event and if the event handler vetoes this event, the cursor is not moved.

This function doesn't make the target call visible, use GoToCell() (not implemented in wx) to do this.

Types

This = wxGrid()
Row = Col = integer()

Set the grid cursor to the specified cell.

The grid cursor indicates the current cell and can be moved by the user using the arrow keys or the mouse.

Calling this function generates a wxEVT_GRID_SELECT_CELL event and if the event handler vetoes this event, the cursor is not moved.

This function doesn't make the target call visible, use GoToCell() (not implemented in wx) to do this.

Types

This = wxGrid()

Sets the colour used to draw grid lines.

Types

This = wxGrid()

Sets the background colour for row and column labels.

Types

This = wxGrid()

Sets the font for row and column labels.

Types

This = wxGrid()

Sets the colour for row and column label text.

Types

This = wxGrid()
ExtraWidth = ExtraHeight = integer()

Sets the extra margins used around the grid area.

A grid may occupy more space than needed for its data display and this function allows setting how big this extra space is

Types

This = wxGrid()
Row = Col = integer()
Option = {isReadOnly, boolean()}

Makes the cell at the specified location read-only or editable.

See: isReadOnly/3

Types

This = wxGrid()
Horiz = Vert = integer()

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.

Types

This = wxGrid()
Width = integer()

Sets the width of the row labels.

If width equals wxGRID_AUTOSIZE then width is calculated automatically so that no label is truncated. Note that this could be slow for a large table.

Types

This = wxGrid()
Row = integer()

Sets the value for the given row label.

If you are using a derived grid table you must override wxGridTableBase::SetRowLabelValue() (not implemented in wx) for this to have any effect.

Types

This = wxGrid()
Row = Height = integer()

Sets the minimal height for the specified row.

See setColMinimalWidth/3 for more information.

Types

This = wxGrid()
Row = Height = integer()

Sets the height of the specified row.

See setColSize/3 for more information.

Types

This = wxGrid()

Set the colour to be used for drawing the selection background.

Types

This = wxGrid()

Set the colour to be used for drawing the selection foreground.

Types

This = wxGrid()
Selmode = wx:wx_enum()

Set the selection behaviour of the grid.

The existing selection is converted to conform to the new mode if possible and discarded otherwise (e.g. any individual selected cells are deselected if the new mode allows only the selection of the entire rows or columns).

Types

This = wxGrid()

Displays the active in-place cell edit control for the current cell after it was hidden.

This method should only be called after calling hideCellEditControl/1, to start editing the current grid cell use enableCellEditControl/2 instead.

Types

This = wxGrid()
Option = {clipToMinMax, boolean()}

Returns the column at the given pixel position depending on the window.

Return: The column index or wxNOT_FOUND.

Types

This = wxGrid()

Returns the column whose right hand edge is close to the given logical x position.

If no column edge is near to this position wxNOT_FOUND is returned.

Types

This = wxGrid()

Returns the row whose bottom edge is close to the given logical y position.

If no row edge is near to this position wxNOT_FOUND is returned.

Types

This = wxGrid()
Option = {clipToMinMax, boolean()}

Returns the grid row that corresponds to the logical y coordinate.

The parameter gridWindow is new since wxWidgets 3.1.3. If it is specified, i.e. non-NULL, only the cells of this window are considered, i.e. the function returns wxNOT_FOUND if y is out of bounds.

If gridWindow is NULL, the function returns wxNOT_FOUND only if there is no row at all at the y position.