SpreadJS Documentation
imeMode Field
Indicates the Input Method Editor (IME) mode.
Syntax
var instance = new GcSpread.Sheets.Style(backColor,
                                        foreColor,
                                        hAlign,
                                        vAlign,
                                        font,
                                        themeFont,
                                        formatter,
                                        borderLeft,
                                        borderTop,
                                        borderRight,
                                        borderBottom,
                                        locked,
                                        textIndent,
                                        wordWrap,
                                        shrinkToFit,
                                        backgroundImage,
                                        cellType,
                                        backgroundImageLayout,
                                        tabStop,
                                        textDecoration,
                                        imeMode,
                                        name,
                                        parentName,
                                        watermark);
var value; // Type: ImeMode
value = instance.imeMode;
var imeMode : ImeMode;
Example
This example sets the IME mode.
var style = new GcSpread.Sheets.Style();
style.imeMode = GcSpread.Sheets.ImeMode.Auto;
activeSheet.setStyle(0, 0, style);
See Also

Reference

Style class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.