Inserts a block of columns in the worksheet to the left of the specified column.

 public void InsertColumns(int columnNumber, int columnCount)
Public Sub InsertColumns(ByVal columnNumber As Integer, ByVal columnCount As Integer)

The 0-based number of the column to insert.

The number of columns to insert.

ws.InsertColumns(3, 10);
ws.InsertColumns(3, 10)