GweBypassCoredllThunk_t::MoveWindow_I (Windows CE 5.0)

Send Feedback

This method changes the position and dimensions of the specified window. For a top-level window, the position and dimensions are relative to the upper-left corner of the screen. For a child window, they are relative to the upper-left corner of the parent window's client area.

static BOOL WINAPI MoveWindow_I(HWND hwndThis,int X,int Y,int nWidth,int nHeight,BOOL bRepaint);

Parameters

  • hwndThis
    [in] Handle to the window.
  • X
    [in] Integer that specifies the new position of the left side of the window.
  • Y
    [in] Integer that specifies the new position of the top of the window.
  • nWidth
    [in] Integer that specifies the new width of the window.
  • nHeight
    [in] Integer that specifies the new height of the window.
  • bRepaint
    [in] Boolean that specifies whether the window is to be repainted. If this parameter is TRUE, the window receives a WM_PAINT message. If the parameter is FALSE, no repainting of any kind occurs. This applies to the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent window uncovered as a result of moving a child window. If this parameter is FALSE, the application must explicitly invalidate or redraw any parts of the window and parent window that need redrawing.

Return Values

Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.

Remarks

The method is an internal version of the MoveWindow function.

The bRepaint parameter is ignored and is assumed to be FALSE.

The system places the WM_PAINT message in the message queue associated with the window. The message loop dispatches the WM_PAINT message only after dispatching all other messages in the queue.

GweBypassCoredllThunk_t::MoveWindow_I sends WM_WINDOWPOSCHANGED, WM_MOVE, and WM_SIZE messages to the window.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: GweBypassCoredllThunk.hpp.

See Also

MoveWindow | GweBypassCoredllThunk_t::SetWindowPos_I | GweBypassCoredllThunk_t::UpdateWindow_I | WM_MOVE | WM_WINDOWPOSCHANGED | WM_PAINT

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.