###Function###
WinGetClientSize

###Description###
Retrieves the size of a given window's client area.

###Syntax###
WinGetClientSize ( "title" [, "text"] )


###Parameters###
@@ParamTable@@
title
	The title/hWnd/class of the window to get the size. See <a href="../intro/windowsadvanced.htm">Title special definition</a>.
text
	[optional] The text of the window to get the size. Default is an empty string. See <a href="../intro/windowsbasic.htm#specialtext">Text special definition</a>.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	a 2-element array containing the following information:
		$aArray[0] = Width of window's client area
		$aArray[1] = Height of window's client area
Failure:	sets the @error flag to non-zero if the window is not found.
@@End@@


###Remarks###
If the window is minimized, the returned width and height values are both zero.  However, <a href="WinGetClientSize.htm">WinGetClientSize()</a> works correctly on (non-minimized) hidden windows.  If the window title "Program Manager" is used, the function will return the size of the desktop. If multiple windows match the criteria, the most recently active window is used.


###Related###
WinGetPos, WinMove


###Example###
@@IncludeExample@@
