Vcl.DBGrids.TColumn.ImeName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property  ImeName: TImeName read GetImeName write SetImeName stored IsImeNameStored;

C++

__property Vcl::Controls::TImeName ImeName = {read=GetImeName, write=SetImeName, stored=IsImeNameStored};

Properties

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

Description

Specifies the input method editor (IME) to use for converting keyboard input to Asian language characters.

Set ImeName to specify which IME to use for converting 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.

ImeName must specify one of the IMEs that has been installed through the Windows control panel. The property inspector provides a drop-down list of all currently installed IMEs on the system. At runtime, applications can obtain a list of currently installed IMEs from the global Screen variable.

If ImeName specifies an unavailable IME, the IME that was active when the application started is used instead. No exception is generated.

See Also