###User Defined Function###
_ExcelColumnDelete

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

###Syntax###
#include <Excel.au3>
_ExcelColumnDelete ( $oExcel, $iColumn [, $iNumCols = 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>
$iColumn
	The specified column number to delete
$iNumCols
	[optional] The number of columns 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 column is invalid
@@End@@


###Remarks###
This function will shift left all columns after the deleted columns(s)


###Related###


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