###User Defined Function###
_GUICtrlListBox_FindInText

###Description###
Searches for an item that contains the specified text anywhere in its text

###Syntax###
#include <GuiListBox.au3>
_GUICtrlListBox_FindInText ( $hWnd, $sText [, $iStart = -1 [, $fWrapOK = True]] )


###Parameters###
@@ParamTable@@
$hWnd
	Control ID/Handle to the control
$sText
	Text to match
$iStart
	[optional] 0-based index of the item to begin the search with or -1 to start from the beginning.
	The specified item is itself excluded from the search.
$fWrapOK
	[optional] If True, the search will continue with the first item if no match is found
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	the 0-based index of the item.
Failure:	-1.
@@End@@


###Remarks###
The search is case insensitive.


###Related###
_GUICtrlListBox_FindString, _GUICtrlListBox_SelectString


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