###User Defined Function###
_ExcelRowDelete

###Description###
Delete a number of rows from the active worksheet.

###Syntax###
#include <Excel.au3>
_ExcelRowDelete ( $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 specified row number to delete
$iNumRows
	[optional] The number of rows to delete
@@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 is invalid
@@End@@


###Remarks###
This function will shift upward all rows after the deleted row(s).


###Related###


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