<winstate> Changes window's state.


Command Tree:   Window  \  Change State
.
Syntax:   <winstate>("WinTitle", "State")
WinTitle
Title of the window.
State
Can be one of these values:
"MIN"
"RESTORE"
"MAX"
"ALWAYS_TOP"
"NOT_ALWAYS_TOP"
"HIDE"
"SHOW"
.
.
Example:   <#> This macro minimizes "Notepad" window
<#>
<commands_only_on>

<if_win>("Notepad","OPEN",0)
   <winstate>("Notepad","MIN")
<else>
   <msg>(100,100,"'Notepad' is not opened!","Message",1)
<endif>