<winresize> Resizes specific window.


Command Tree:   Window  \  Resize
.
Syntax:   <winresize>("WinTitle", Match, Width, Height)
WinTitle
Title of the window to resize.
Match
Can be one of these values:
0 - WinTitle can be substring of a window title
1 - WinTitle must exactly match a window title 
Width
Desired window's width
Height
Desired  window's height
.
.
Example:   <#> This macro resizes "Notepad" window to size 300x200
<#>
<commands_only_on>

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