###User Defined Function###
_ExcelRowInsert

###Description###
Insert a number of rows into the active worksheet.

###Syntax###
#include <Excel.au3>
_ExcelRowInsert ( $oExcel, $iRow [, $iNumRows = 1] )


###Parameters###
@@ParamTable@@
$oExcel
	An Excel object opened by a preceding call to <a href="_ExcelBookOpen.htm">_ExcelBookOpen()</a> or <a href="_ExcelBookNew.htm">_ExcelBookNew()/a>
$iRow
	The row position for insertion
$iNumRows
	[optional] The number of rows to insert
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	1.
Failure:	0 and sets the @error flag to non-zero.
@error:	1 - Specified object does not exist
	2 - Specified row postion is invalid
@@End@@


###Remarks###
This function will shift downward all rows before the inserted row(s)


###Related###


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