Xbasic

SYS_ID_MINIMIZE Function

Syntax

V SYS_ID_MINIMIZE([C window_name])

Arguments

window_name

The name of the window as reported by SYS_ID_ENUM()or seen on the window's title bar.

Description

SYS_ID_MINIMIZE() minimizes the window named Window_Name.

The following example assumes that Notepad is open and the name of the window (as seen on the title bar) is "Untitled - Notepad".

sys_id_show("Untitled - Notepad")
sys_id_minimize("Untitled - Notepad") -> minimizes the window
sys_id_restore("Untitled - Notepad") -> return the window to its prior state

Limitations

Desktop applications only.

See Also