###User Defined Function###
_GUICtrlListView_SetGroupInfo

###Description###
Sets group information

###Syntax###
#include <GuiListView.au3>
_GUICtrlListView_SetGroupInfo ( $hWnd, $iGroupID, $sHeader [, $iAlign = 0 [, $iState = $LVGS_NORMAL]] )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$iGroupID
	ID of the group
$sHeader
	Header text
$iAlign
	[optional] Alignment of the header text for the group:
		0 - Left
		1 - Center
		2 - Right
$iState
	[optional] <strong>Windows Vista or later</strong> can have one of the following values:
		$LVGS_NORMAL - Groups are expanded, the group name is displayed, and all items in the group are displayed.
		$LVGS_COLLAPSED - The group is collapsed.
		$LVGS_HIDDEN - The group is hidden.
		$LVGS_NOHEADER - The group does not display a header.
		$LVGS_COLLAPSIBLE - The group can be collapsed.
		$LVGS_FOCUSED - The group has keyboard focus.
		$LVGS_SELECTED - The group is selected.
		$LVGS_SUBSETED - The group displays only a portion of its items.
		$LVGS_SUBSETLINKFOCUSED - The subset link of the group has keyboard focus
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True.
Failure:	False.
@@End@@


###Remarks###
None.


###Related###
_GUICtrlListView_GetGroupInfo, _GUICtrlListView_GetGroupInfoByIndex


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