Share via


IMR_ISIMEAWARE (Compact 2013)

3/28/2014

This message is sent to the application through the WM_IME_REQUEST message to indicate that the window is IME aware or that it uses smart caps.

Syntax

IMR_ISIMEAWARE
  lParam = 0;
  wParam = 0;

Parameters

  • lParam
    Not used.
  • wParam
    Not used.

Return Value

Returns IMEAF_AWARE if the window is IME aware.

Returns IMEAF_SMART_CAPS if the window uses smart caps.

Remarks

Sending this message through WM_IME_REQUEST is a way to indicate to Smartsearch that the window is IME aware; this means that the control takes keystroke input directly and does not launch Smartsearch. To do this, call WM_IME_REQUEST, setting dwRequest to IMR_ISIMEAWARE, and setting dwData to IMEAF_AWARE.

To indicate that the window uses smart caps, call WM_IME_REQUEST, setting dwRequest to IMR_ISIMEAWARE, and setting dwData to IMEAF_SMART_CAPS.

See Also

Reference

Input Method Manager (IMM) Messages

Other Resources

WM_IME_REQUEST