Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Deletes one or more rows from the table.

Signature
C#
C#
 public void DeleteRows(int startIndex, int numRows)
Signature
vb.net
vb.net
Public Sub DeleteRows(ByVal startIndex As Integer, ByVal numRows As Integer)
Parameters
Param
startIndex
startIndex

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

Param
numRows
numRows

The number of rows to delete.

Example
Code Block
csharp
csharp
titleC#
tbl.DeleteRows(2, 5);
Code Block
vb.net
vb.net
titlevb.net
tbl.DeleteRows(2, 5)