Deletes a column and its contents from the worksheet. Columns after the deleted column will be moved to the left.

 public void DeleteColumn(int columnNumber)
Public Sub DeleteColumn(ByVal columnNumber As Integer)

The 0-based number of the column to remove.

ws.DeleteColumn(9);
ws.DeleteColumn(9)