###User Defined Function###
_ArrayToClip

###Description###
Sends the contents of an array to the clipboard, each element delimited by a carriage return.

###Syntax###
#include <Array.au3>
_ArrayToClip ( Const ByRef $avArray [, $iStart = 0 [, $iEnd = 0]] )


###Parameters###
@@ParamTable@@
$avArray
	Array to copy to clipboard
$iStart
	[optional] Index of array to start copying at
$iEnd
	[optional] Index of array to stop copying at
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	1.
Failure:	0 and sets the @error flag to non-zero.
@error:	-1 - <a href="../functions/ClipPut.htm">ClipPut()</a> failed
	Other - See <a href="_ArrayToString.htm">_ArrayToString()</a> description for @error
@@End@@


###Remarks###
None.


###Related###
_ArrayToString


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