[]
        
(Showing Draft Content)

GrapeCity.Win.Spread.InputMan.CellType.EditBase.DefaultImeMode

DefaultImeMode Property

DefaultImeMode

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Gets the default Input Method Editor (IME) mode supported by the control.
Declaration
protected override ImeMode DefaultImeMode { get; }
Protected Overrides ReadOnly Property DefaultImeMode As ImeMode
Property Value
Type Description
ImeMode

One of the System.Windows.Forms.ImeMode values.

Overrides
GrapeCity.Framework.Spread.InputMan.CellType.Views.Windows.ElementContainerControl.DefaultImeMode
Remarks

An Input Method Editor (IME) is a program that enables users to enter complex characters and symbols, such as Japanese Kanji characters, by using a standard keyboard.

As implemented in the Control class, this property always returns the Inherit value. The Inherit value specifies that the IME mode is inherited from the parent control.

Notes to Inheritors:

When overriding the DefaultImeMode property in a derived class, use the base class's DefaultImeMode property to extend the base implementation; otherwise, you must provide all the implementation.
See Also