IActiveIMMApp::IsUIMessageW method

Checks for messages that are intended for the Input Method Editor (IME) window and sends those messages to the specified window ( Unicode implementation).

Syntax

HRESULT IsUIMessageW(
  [in] HWND   hWndIME,
  [in] UINT   msg,
  [in] WPARAM wParam,
  [in] LPARAM lParam
);

Parameters

  • hWndIME [in]
    A handle to a window belonging to the IME window class.

  • msg [in]
    An unsigned integer value that contains the message to check.

  • wParam [in]
    A message-specific parameter.

  • lParam [in]
    A message-specific parameter.

Return value

Returns S_OK if successful, or an error value otherwise.

Remarks

This method maps to the ImmIsUIMessage function that is documented in the Windows Software Development Kit (SDK).

Requirements

Minimum supported client

Windows XP

Minimum supported server

Windows 2000 Server

Product

Internet Explorer 5.0

Header

Dimm.h

IDL

Dimm.idl

See also

IActiveIMMApp