Inserts one or more rows at the specified position in the table.

 public void InsertRows(int index, int numRows)
Public Sub InsertRows(ByVal index As Integer, ByVal numRows As Integer)

The 0-based index of the first row to insert.

The number of rows to insert.

tbl.InsertRows(2, 5);
tbl.InsertRows(2, 5)