Syntax
| window.ID.pos.rel(left,top) |
Parameters
| INT | left,top | Relative position of the window. |
Return value
No value is returned.
Description
| Sets the window's position, relative to the current position. |
MioScript Sample Code
// Move the window by one pixel left-bottom
window.main.pos.rel(1, 1) |
|