Syntax
| window.ID.borderIcon(sysMenu, minMButton, maxButton, helpButton) |
Parameters
| BOOL | sysMenu | If set to true, the system menu is visible. Warning: If this parameter is set to false, no icon is visible in the window title bar, even if the other ones are set to true.
| | BOOL | minMButton | If set to true, the minimize button is visible.
| | BOOL | maxButton | If set to true, the maximize button is visible.
| | BOOL | helpButton | If set to true, the help menu is visible. |
Return value
No value is returned.
Description
Set which icons should be visible in the title bar of a window.
A window style with a title 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,300,300)
window.main.borderStyle(3)
window.main.borderIcon(true, false, false, false)
event.end |
|