This event class contains information about a row/column resize event.
The event handler for the following functions takes a GridSizeEvent parameter. The …CMD... variants also take a window identifier.
| evt_grid_col_size() { | event | ... } | The user resized a column by dragging it. Processes a EVT_GRID_COL_SIZE. |
| evt_grid_row_size() { | event | ... } | The user resized a row by dragging it. Processes a EVT_GRID_ROW_SIZE. |
| evt_grid_cmd_col_size() { | event | ... } | The user resized a column by dragging it; variant taking a window identifier. Processes a EVT_GRID_COL_SIZE. |
| evt_grid_cmd_row_size() { | event | ... } | The user resized a row by dragging it; variant taking a window identifier. Processes a EVT_GRID_ROW_SIZE. |
GridSizeEvent.new(Integer id, EventType type, Object obj,
Integer rowOrCol = -1,
Integer x = -1,
Integer y = -1,
Boolean control = false,
Boolean shift = false,
Boolean alt = false,
Boolean meta = false)
Boolean alt_down()
Returns true if the Alt key was down at the time of the event.
Boolean control_down()
Returns true if the Control key was down at the time of the event.
Point get_position()
Position in pixels at which the event occurred.
Integer get_row_or_col()
Row or column at that was resized.
Boolean meta_down()
Returns true if the Meta key was down at the time of the event.
Boolean shift_down()
Returns true if the Shift key was down at the time of the event.
[This page automatically generated from the Textile source at Thu May 01 00:50:38 +0100 2008]