Vcl.DBCtrls.TDBMemo.ImeName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ImeName;

C++

__property ImeName = {default=0};

Properties

Type Visibility Source Unit Parent
property published
Vcl.DBCtrls.pas
Vcl.DBCtrls.hpp
Vcl.DBCtrls TDBMemo

Description

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

Vcl.DBCtrls.TDBMemo.ImeName inherits from Vcl.Controls.TWinControl.ImeName. All content below this line refers to Vcl.Controls.TWinControl.ImeName.

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. 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.

Note: The value of ImeName only takes effect when the control receives focus. To change the value of ImeName after the control has input focus, call the SetIme method.

See Also