SpreadJS Documentation
processKeyUp Method
The KeyboardEvent.
The context associated with the cell type. See the Remarks for more information.
Processes key up in display mode.
Syntax
var instance = new GcSpread.Sheets.BaseCellType();
var value; // Type: boolean
value = instance.processKeyUp(event, context);
function processKeyUp( 
   event : KeyboardEvent,
   context : object
) : boolean;

Parameters

event
The KeyboardEvent.
context
The context associated with the cell type. See the Remarks for more information.

Return Value

Returns true if the process is successful; otherwise, false.
Remarks

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.

 

See Also

Reference

BaseCellType type
isReservedKey Method
processKeyDown Method

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.