IActiveIME::Escape method

Enables an application to access capabilities of a specific Active Input Method Editor (IME) that are not available directly through other methods.

Syntax

HRESULT Escape(
  [in]      HIMC    hIMC,
  [in]      UINT    uEscape,
  [in, out] void    *pData,
  [out]     LRESULT *plResult
);

Parameters

  • hIMC [in]
    A handle to the input context.

  • uEscape [in]
    An unsigned integer value that specifies the escape function to be performed.

  • pData [in, out]
    The address of a buffer that contains the data required by the specified escape function.

  • plResult [out]
    The address of a buffer that receives the result of the operation.

Return value

Returns S_OK if successful, or an error value otherwise.

Remarks

This method maps to the ImeEscape function documented in the Windows 2000 Driver Development Kit (DDK).

Requirements

Minimum supported client

Windows 2000 Professional

Minimum supported server

Windows 2000 Server

Product

Internet Explorer 5.0

Header

Dimm.h

IDL

Dimm.idl

DLL

Custom

See also

IActiveIME