{description}
{excerpt}Deletes one or more rows from the table.{excerpt}
{signature:C#}
 public void DeleteRows(int startIndex, int numRows)
{signature}{signature:vb.net}
Public Sub DeleteRows(ByVal startIndex As Integer, ByVal numRows As Integer)
{signature}
{parameters}
{param:startIndex}The 0\-based index of the first row to delete.{param}
{param:numRows}The number of rows to delete.{param}
{example}{code:csharp|title=C#}
tbl.DeleteRows(2, 5);{code}
{code:vb.net|title=vb.net}
tbl.DeleteRows(2, 5){code}

{example}