###User Defined Function###
_GUICtrlTreeView_GetPrev

###Description###
Retrieves the previous item before the calling item

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


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

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


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


###Related###
_GUICtrlTreeView_GetNext, _GUICtrlTreeView_GetPrevChild, _GUICtrlTreeView_GetPrevVisible


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