Syntax
| window.ID.clientArea(width,height) |
Parameters
| INT | width,height | Size of the window client's area. |
Return value
No value is returned.
Description
Set the size of the window client's area.
The client's area is the window's area less the size of the borders.
A window style with a border should be set before this function is called.
For more information: window.ID.borderStyle. |
MioScript Sample Code
event.load
window.main.pos.now(100,100)
window.main.borderStyle(3)
window.main.clientArea(300, 300)
event.end |
|