###User Defined Function###
_ExcelColumnInsert

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

###Syntax###
#include <Excel.au3>
_ExcelColumnInsert ( $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 begin insertion
$iNumCols
	[optional] The number of columns 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 column is invalid
@@End@@


###Remarks###
This function will shift right all columns after the inserted columns(s)


###Related###


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