Inserts a number of rows in the worksheet above the specified row.

 public void InsertRows(int rowNumber, int rowCount)
Public Sub InsertRows(ByVal rowNumber As Integer, ByVal rowCount As Integer)

The 0-based number of the row to insert.

The number of rows to insert.

ws.InsertRows(3, 100);
ws.InsertRows(3, 100)