###Function###
WinGetClientSize

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

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


###Parameters###
@@ParamTable@@
title
	The title of the window to read. See <a href="../intro/windowsadvanced.htm">Title special definition</a>.
text
	[optional] The text of the window to read.
@@End@@


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


###Remarks###
If the window is minimized, the returned width and height values are both zero.  However, WinGetClientSize 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@@
