###User Defined Function###
_GUICtrlListView_GetGroupRect

###Description###
Gets the rectangle for a specified group

###Syntax###
#include <GuiListView.au3>
_GUICtrlListView_GetGroupRect ( $hWnd, $iGroupID [, $iGet = $LVGGR_GROUP] )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$iGroupID
	ID that specifies the group whose information is retrieved
$iGet
	[optional] Flag to specify the coordinates of the rectangle to get, can be one of the following:
		$LVGGR_GROUP - Coordinates of the entire expanded group
		$LVGGR_HEADER - Coordinates of the header only (collapsed group)
		$LVGGR_LABEL - Coordinates of the label only
		$LVGGR_SUBSETLINK - Coordinates of the subset link only (markup subset)
@@End@@

###ReturnValue###
Returns an array with the following format:
	[0] - Specifies the x-coordinate of the upper-left corner of the rectangle
	[1] - Specifies the y-coordinate of the upper-left corner of the rectangle
	[2] - Specifies the x-coordinate of the lower-right corner of the rectangle
	[3] - Specifies the y-coordinate of the lower-right corner of the rectangle


###Remarks###
<strong>Windows Vista or later</strong>


###Related###


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