###User Defined Function###
_GUICtrlTreeView_AddChild

###Description###
Adds a new item

###Syntax###
#include <GuiTreeView.au3>
_GUICtrlTreeView_AddChild ( $hWnd, $hParent, $sText [, $iImage = -1 [, $iSelImage = -1]] )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$hParent
	Parent item
$sText
	Text of the item
$iImage
	[optional] 0-based index of the item's icon in the control's image list
$iSelImage
	[optional] 0-based index of the item's icon in the control's image list
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	the handle to the new item.
Failure:	0.
@@End@@


###Remarks###
The item is added as a child of $hParent. It is added to the end of $hParent's list of child items.
If the control is sorted, this function inserts the item in the correct sort order position, rather than as the last child of $hParent.


###Related###
_GUICtrlTreeView_AddChildFirst


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