[]
Specifies the input method editor (IME) mode used by a data validation rule.
Use this enum with IMEMode to control how text is entered in validated cells, such as enforcing Hiragana, Katakana, alphanumeric, or Hangul input modes.
public enum IMEModeType
Public Enum IMEModeType
IValidation validation = worksheet.Range["A1"].Validation;
validation.Add(ValidationType.Whole, ValidationAlertStyle.Stop,
ValidationOperator.Between, 1, 10);
validation.IMEMode = IMEModeType.Hiragana;
| Name | Description |
|---|---|
| Disabled | Specifies that the Input Method Editor (IME) mode is disabled. |
| FullAlpha | Specifies full-width alphanumeric characters. |
| FullHangul | Specifies full-width Hangul. |
| FullKatakana | Specifies the mode is full-width Katakana. |
| HalfAlpha | Specifies half-width alphanumeric characters. |
| HalfHangul | Specifies half-width Hangul. |
| HalfKatakana | Specifies the half-width Katakana input mode. |
| Hiragana | Specifies Hiragana input mode for the Japanese IME. |
| NoControl | Specifies that the data validation rule does not control the input method editor (IME) mode. |
| Off | Specifies the mode is off (English mode). |
| On | Specifies that the Input Method Editor (IME) mode is on. |