###User Defined Function###
_ArrayMinIndex

###Description###
Returns the index where the lowest value occurs in the array.

###Syntax###
#include <Array.au3>
_ArrayMinIndex ( $avArray [, $iCompNumeric = 0 [, $iStart = 0 [, $iEnd = 0 ] ] ] )

###Parameters###
@@ParamTable@@
$avArray
	Array to search
$iCompNumeric
	[optional]
	0 = compare alphanumerically
	1 = compare numerically
$iStart
	[optional] Index of array to start searching at
$iEnd
	[optional] Index of array to stop searching at
@@End@@

###ReturnValue###
@@ReturnTable@@
Success
	Returns the index of the minimum value in the array
Failure
	Returns -1 and sets @error
@Error
	1 = $avArray is not an array
	2 = $iStart is greater than $iEnd
@@End@@

###Remarks###
None.

###Related###
_ArrayMax, _ArrayMaxIndex, _ArrayMin

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