###User Defined Function###
_GUICtrlTreeView_Add

###Description###
Adds a new item

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


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$hSibling
	Sibling 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 the last sibling of $hSibling.
If the control is sorted, the function inserts the item in the correct sort order position rather than as the last child of $hSibling.


###Related###
_GUICtrlTreeView_AddFirst


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