windows_programming_notes.nbk: Home | Index | Next Page: WM_IME_KEYDOWN | Previous Page: WM_ICONERASEBKGND


 WM_IME_COMPOSITIONFULL

The WM_IME_COMPOSITIONFULL message is sent to an application when the IME window finds no space to extend the area for the composition window. The application should use the IMC_SETCOMPOSITIONWINDOW command to specify how the window should be displayed.

A window receives this message through its WindowProc function.

    LRESULT CALLBACK WindowProc(
      HWND hwnd,       // handle to window
      WM_IME_COMPOSITIONFULL,   // message
      WPARAM wParam,   // not used
      LPARAM lParam    // not used
    );

Parameters

This message has no parameters.

Return Values

This message has no return value.

Remarks

The IME window, not the IME, sends this notification message by the SendMessage function.

Requirements

  Windows NT/2000 or later: Requires Windows NT 4.0 or later.
  Windows 95/98/Me: Requires Windows 95 or later.
  Header: Declared in Imm.h; include Windows.h.

windows_programming_notes.nbk: Home | Index | Next Page: WM_IME_KEYDOWN | Previous Page: WM_ICONERASEBKGND


Notebook exported on Monday, 7 July 2008, 18:56:50 PM Eastern Daylight Time