The IMECompositionMessage Class contains the following constructors:
IMECompositionMessage(int id)
IMECompositionMessage(int id, int keyCode, int keyChar, String compStr)
Creates an Input Method Composition message.
public IMECompositionMessage(int id);
id | The message identifier, which can be one of the following:
START_COMPOSITION |
Creates an Input Method Composition message that has a specific key code, key character, and composition string.
public IMECompositionMessage(int id, int keyCode, int keyChar, String compStr);
id | The message identifier, which can be one of the following:
START_COMPOSITION |
keyCode | The message key code. |
keyChar | The message key character. |
compStr | The message composition string. |