[]
Gets or sets the Input Method Editor (IME) mode of the control.
public ImeMode ImeMode { get; set; }
Public Property ImeMode As ImeMode
An IME is a program that enables users to enter complex characters and symbols, such as Japanese Kanji characters, using a standard keyboard. The ImeMode property is typically set to Off for a control that is intended to only enter numeric values. The ImeMode property value is set to NoControl for the Form class.
Most classes that do not directly support Input Method Editors, or allow direct input from an IME, will set the value of this property to NoControl.Type | Condition |
---|---|
InvalidEnumArgumentException | The assigned value is not one of the ImeMode enumeration values. |