Insert an empty column in the worksheet with the given name and store the name in a string. If the given name already exists then increment it. The actual name created is returned by reference
InsertCol(Pos, ColName)
Returns True on successful and False on failure.
#insert column (New) before col(1) import PyOrigin wks=PyOrigin.WorksheetPages('Book1').Layers(0) wks.InsertCol(1,'New')