Spread WinForms 15
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / EditBase Class / ImeMode Property


ImeMode Property (EditBase)
Gets or sets the Input Method Editor (IME) mode of the control.
Syntax
'Declaration
 
Public Shadows Property ImeMode As ImeMode
 
'Usage
 
Dim instance As EditBase
Dim value As ImeMode
 
instance.ImeMode = value
 
value = instance.ImeMode

Property Value

One of the System.Windows.Forms.ImeMode values. The default is System.Windows.Forms.ImeMode.Inherit.
Exceptions
ExceptionDescription
The assigned value is not one of the System.Windows.Forms.ImeMode enumeration values.
Remarks
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 System.Windows.Forms.ImeMode.Off for a control that is intended to only enter numeric values. The ImeMode property value is set to System.Windows.Forms.ImeMode.NoControl for the System.Windows.Forms.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 System.Windows.Forms.ImeMode.NoControl.

See Also