wx.grid.GridEditorCreatedEvent

Inheritance diagram for wx.grid.GridEditorCreatedEvent:



Description

Event for the creation of a wx.grid.Grid editor.

Event Handling

The event handler for the following functions takes a wx.grid.GridEditorCreatedEvent parameter. The ..._CMD_... variants also take a window identifier.

Event Name Description
wx.grid.EVT_GRID_EDITOR_CREATED(func) The editor for a cell was created. Processes a wx.grid.wxEVT_GRID_EDITOR_CREATED.
wx.grid.EVT_GRID_CMD_EDITOR_CREATED(id, func) The editor for a cell was created; variant taking a window identifier. Processes a wx.grid.wxEVT_GRID_EDITOR_CREATED.

Properties Summary

Class API

Methods

__init__(id, type, obj, row, col, ctrl)

Default constructor.

Parameters:


Returns:

wx.grid.GridEditorCreatedEvent


GetCol()

Returns the column at which the event occurred.


Returns:

int


GetControl()

Returns the edit control.


Returns:

wx.Control


GetRow()

Returns the row at which the event occurred.


Returns:

int


SetCol(col)

Sets the column at which the event occurred.

Parameters:

  • col (int)

SetControl(ctrl)

Sets the edit control.

Parameters:


SetRow(row)

Sets the row at which the event occurred.

Parameters:

  • row (int)

Properties

Col
See GetCol and SetCol
Control
See GetControl and SetControl
Row
See GetRow and SetRow