WinMove
Moves the active window to a new location and sizes the window in a single operation. This is the same as calling the WinPos() and the WinSize() functions. You use PageInfo to get the current window position.
Notes
Syntax
WinMove(X, Y, Width, Height)
X, Y:
The new x and y pixel coordinates of the top-left corner of the active window.
Width:
The width of the window, in pixels.
Height:
The height of the window, in pixels.
Return Value
0 (zero) if successful, otherwise an error is returned.
Related Functions
Example
WinMove(100,50,500,300);
/* Moves the top-left corner of the active window to the pixel coordinate 100,50 and size the window to 500 x 300 pixels. */
See Also