GcSpread.Sheets Namespace > BaseCellType type : processKeyUp Method |
var instance = new GcSpread.Sheets.BaseCellType(); var value; // Type: boolean value = instance.processKeyUp(event, context);
true
if the process is successful; otherwise, false
.You can override the isReservedKey method to customize the reserved key. In display mode, once isReservedKey returns True, the sheet will not handle the reserved key event. The event is handled by the processKeyDown and processKeyUp methods.
The context parameter can include the following items:
Item | Type | Description |
context.sheet | GcSpread.Sheets.Sheet instance | Indicates the current sheet. |
context.row | number | The row index. |
context.col | number | The column index. |
context.sheetArea | GcSpread.Sheets.SheetArea | The current sheet area. |