+
+class wxGridEditorCreatedEvent : public wxCommandEvent {
+public:
+ wxGridEditorCreatedEvent(int id, wxEventType type, wxObject* obj,
+ int row, int col, wxControl* ctrl);
+
+ int GetRow();
+ int GetCol();
+ wxControl* GetControl();
+ void SetRow(int row);
+ void SetCol(int col);
+ void SetControl(wxControl* ctrl);
+};
+
+
+