Deletes one or more rows from the table.

 public void DeleteRows(int startIndex, int numRows)
Public Sub DeleteRows(ByVal startIndex As Integer, ByVal numRows As Integer)

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

The number of rows to delete.

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