 |
MoveWindow ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The MoveWindow function changes the position and dimensions of the specified window. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL MoveWindow(
HWND hWnd, // handle to window
int X, // horizontal position
int Y, // vertical position
int nWidth, // width
int nHeight, // height
BOOL bRepaint // repaint option
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER MoveWindow IN user32;
INTEGER hWnd,;
INTEGER X,;
INTEGER Y,;
INTEGER nWidth,;
INTEGER nHeight,;
INTEGER bRepaint
|
 |
 |
 |
| Parameters: |
 |
hWnd
[in] Handle to the window.
X
[in] Specifies the new position of the left side of the window.
Y
[in] Specifies the new position of the top of the window.
nWidth
[in] Specifies the new width of the window.
nHeight
[in] Specifies the new height of the window.
bRepaint
[in] Specifies whether the window is to be repainted.
|
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is nonzero. |
 |
 |
| Word Index links for the MoveWindow : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2002-03-26 22:16:20 | | Modified: | 2002-03-26 22:17:57 | Visited in last 7 days: 334 |