WM_IME_CONTROL
The
WM_IME_CONTROL message directs the IME window to carry out the requested
command. An application uses this message to control the IME window created by
the application.
wParam = (WPARAM) (DWORD) dwCommand;
lParam = (LPARAM) (DWORD) dwData;
Parameters
dwCommand
Command
value. This parameter can be one of the following values:
IMC_GETCANDIDATEPOS |
IMC_OPENSTATUSWINDOW |
IMC_GETCOMPOSITIONFONT |
IMC_SETCANDIDATEPOS |
IMC_GETCOMPOSITIONWINDOW |
IMC_SETCOMPOSITIONFONT |
IMC_GETCONVERSIONMODE |
IMC_SETCOMPOSITIONWINDOW |
IMC_GETOPENSTATUS |
IMC_SETCONVERSIONMODE |
IMC_GETSENTENCEMODE |
IMC_SETOPENSTATUS |
IMC_GETSTATUSWINDOWPOS |
IMC_SETSENTENCEMODE |
IMC_CLOSESTATUSWINDOW |
IMC_SETSTATUSWINDOWPOS |
For more
information about these commands, see the individual descriptions.
dwData
Command-specific
value.
Return Values
Returns a
command-specific value.
See Also