###User Defined Function###
_GUICtrlTreeView_GetNext

###Description###
Retrieves the next item after the calling item

###Syntax###
#include <GuiTreeView.au3>
_GUICtrlTreeView_GetNext ( $hWnd, $hItem )


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

###ReturnValue###
@@ReturnTable@@
Success:	the handle of the next item.
Failure:	0.
@@End@@


###Remarks###
If the calling item is the last item, <a href="_GUICtrlTreeView_GetNext.htm">_GUICtrlTreeView_GetNext()</a> returns 0, otherwise it will return the next item including items that aren't visible and child items.
To get the next item at the same level as the calling item use <a href="_GUICtrlTreeView_GetNextSibling.htm">_GUICtrlTreeView_GetNextSibling()</a>.
To get the next visible item, use <a href="_GUICtrlTreeView_GetNextVisible.htm">_GUICtrlTreeView_GetNextVisible()</a>.


###Related###
_GUICtrlTreeView_GetNextVisible, _GUICtrlTreeView_GetNextSibling, _GUICtrlTreeView_GetPrev


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