Contents Up Previous Next

wxGridEditorCreatedEvent

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.
Include files

<wx/grid.h>

Members

wxGridEditorCreatedEvent::wxGridEditorCreatedEvent
wxGridEditorCreatedEvent::GetCol
wxGridEditorCreatedEvent::GetControl
wxGridEditorCreatedEvent::GetRow
wxGridEditorCreatedEvent::SetCol
wxGridEditorCreatedEvent::SetControl
wxGridEditorCreatedEvent::SetRow


wxGridEditorCreatedEvent::wxGridEditorCreatedEvent

wxGridEditorCreatedEvent()

Default constructor.

wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj, int row, int col, wxControl* ctrl)


wxGridEditorCreatedEvent::GetCol

int GetCol()

Returns the column at which the event occurred.


wxGridEditorCreatedEvent::GetControl

wxControl* GetControl()

Returns the edit control.


wxGridEditorCreatedEvent::GetRow

int GetRow()

Returns the row at which the event occurred.


wxGridEditorCreatedEvent::SetCol

void SetCol(int col)

Sets the column at which the event occurred.


wxGridEditorCreatedEvent::SetControl

void SetControl(wxControl* ctrl)

Sets the edit control.


wxGridEditorCreatedEvent::SetRow

void SetRow(int row)

Sets the row at which the event occurred.