Vcl.DBGrids.TColumn.ImeMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property  ImeMode: TImeMode read GetImeMode write SetImeMode stored IsImeModeStored;

C++

__property Vcl::Controls::TImeMode ImeMode = {read=GetImeMode, write=SetImeMode, stored=IsImeModeStored, nodefault};

Properties

Type Visibility Source Unit Parent
property published
Vcl.DbGrids.pas
Vcl.DBGrids.hpp
Vcl.DBGrids TColumn

Description

Determines the behavior of the input method editor (IME) when the column is edited.

Set ImeMode to configure the way an IME processes user keystrokes when the user is editing the column. An IME is a front-end input processor for Asian language characters. The IME hooks all keyboard input, converts it to Asian characters in a conversion window, and sends the converted characters or strings on to the application.

ImeMode allows the type of conversion performed by the IME to be tailored to the input expected for the column. For example, a column that only accepts numeric input might specify an ImeMode of imClose, as no conversion is necessary for numeric input.

See Also