This event class contains information about a row/column resize event.
Derived from
wxNotifyEvent
wxCommandEvent
wxEvent
wxObject
Include files
<wx/grid.h>
Event handling
The event handler for the following functions takes a wxGridSizeEvent parameter. The ..._CMD_... variants also take a window identifier.
EVT_GRID_COL_SIZE(func) | The user resized a column by dragging it. Processes a wxEVT_GRID_COL_SIZE. |
---|---|
EVT_GRID_ROW_SIZE(func) | The user resized a row by dragging it. Processes a wxEVT_GRID_ROW_SIZE. |
EVT_GRID_CMD_COL_SIZE(func) | The user resized a column by dragging it; variant taking a window identifier. Processes a wxEVT_GRID_COL_SIZE. |
EVT_GRID_CMD_ROW_SIZE(func) | The user resized a row by dragging it; variant taking a window identifier. Processes a wxEVT_GRID_ROW_SIZE. |
Default constructor.
Returns true if the Alt key was down at the time of the event.
Returns true if the Control key was down at the time of the event.
Position in pixels at which the event occurred.
Row or column at that was resized.
Returns true if the Meta key was down at the time of the event.
Returns true if the Shift key was down at the time of the event.
ymasuda 平成17年11月19日