SpreadJS Documentation
imeMode Method
The cell imeMode.
Gets or sets the imeMode of the cell.
Syntax
var instance = new GcSpread.Sheets.Cell(sheet, row, col, sheetArea);
var returnValue; // Type: ImeMode
returnValue = instance.imeMode(value);
function imeMode( 
   value : ImeMode
) : ImeMode;

Parameters

value
The cell imeMode.

Return Value

The cell imeMode.
Example
This example disables the IME mode.
activeSheet.getCell(0, 0).imeMode(GcSpread.Sheets.ImeMode.Disabled);
//or
var style = new GcSpread.Sheets.Style();
style.imeMode = GcSpread.Sheets.ImeMode.Disabled;
activeSheet.setStyle(0, 0, style);
See Also

Reference

Cell type

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.