# GC.Spread.Sheets.ImeMode

## Content

# Enumeration: ImeMode

[Spread](../modules/GC.Spread).[Sheets](../modules/GC.Spread.Sheets).ImeMode

Defines the IME mode to control the state of the Input Method Editor (IME).

**`example`**
```
//This example uses the imeMode method.
activeSheet.getRange(-1, 2, -1, 1).imeMode(GC.Spread.Sheets.ImeMode.auto);
```

## Table of contents

### Enumeration members

- [active](GC.Spread.Sheets.ImeMode#active)
- [auto](GC.Spread.Sheets.ImeMode#auto)
- [disabled](GC.Spread.Sheets.ImeMode#disabled)
- [inactive](GC.Spread.Sheets.ImeMode#inactive)

## Enumeration members

### <a id="active" name="active"></a> active

• **active** = `2`

All characters are entered through the IME. Users can still deactivate the IME.

___

### <a id="auto" name="auto"></a> auto

• **auto** = `1`

No change is made to the current input method editor state.

___

### <a id="disabled" name="disabled"></a> disabled

• **disabled** = `0`

The input method editor is disabled and may not be activated by the user.

___

### <a id="inactive" name="inactive"></a> inactive

• **inactive** = `4`

All characters are entered without IME. Users can still activate the IME.
