Derived from
wxCommandEvent
wxEvent
wxObject
Event handling
The event handler for the following functions takes a wxGridEditorCreatedEvent parameter. The ..._CMD_... variants also take a window identifier.
EVT_GRID_EDITOR_CREATED(func) | The editor for a cell was created. Processes a wxEVT_GRID_EDITOR_CREATED. |
EVT_GRID_CMD_EDITOR_CREATED(id, func) | The editor for a cell was created; variant taking a window identifier. Processes a wxEVT_GRID_EDITOR_CREATED. |
<wx/grid.h>
Members
wxGridEditorCreatedEvent::wxGridEditorCreatedEvent
wxGridEditorCreatedEvent::GetCol
wxGridEditorCreatedEvent::GetControl
wxGridEditorCreatedEvent::GetRow
wxGridEditorCreatedEvent::SetCol
wxGridEditorCreatedEvent::SetControl
wxGridEditorCreatedEvent::SetRow
wxGridEditorCreatedEvent()
Default constructor.
wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj, int row, int col, wxControl* ctrl)
int GetCol()
Returns the column at which the event occurred.
wxControl* GetControl()
Returns the edit control.
int GetRow()
Returns the row at which the event occurred.
void SetCol(int col)
Sets the column at which the event occurred.
void SetControl(wxControl* ctrl)
Sets the edit control.
void SetRow(int row)
Sets the row at which the event occurred.