###User Defined Function###
_GUICtrlTreeView_GetVisibleCount

###Description###
Returns the number of items that can be fully visible in the control

###Syntax###
#include <GuiTreeView.au3>
_GUICtrlTreeView_GetVisibleCount ( $hWnd )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
@@End@@

###ReturnValue###
Returns the Maximum number of items possibly visible in the control.


###Remarks###
The number of items that can be fully visible may be greater than the number of items in the control.
The control calculates this value by dividing the height of the client window by the height of an item.
Note that the return value is the number of items that can be fully visible.
If you can see all of 20 items and part of one more item, the return value is 20 not 21.


###Related###


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