<winclose> Closes required window.


Command Tree:   Window  \  Close
.
Syntax:   <winclose>("WinTitle", Match)
WinTitle
Title of the window.
Match
Can be one of these values:
0 - WinTitle can be substring of a window title
1 - WinTitle must exactly match a window title 
.
.
Example:   <#> This macro closes "Notepad" window
<#>
<commands_only_on>

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