Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Deletes one or more rows from the table.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Deletes one or more rows from the table.{excerpt}
{signature:C#}
 public void DeleteRows(int startIndex, int numRows)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub DeleteRows(ByVal startIndex As Integer, ByVal numRows As Integer)
Parameters
{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}
Param
startIndexstartIndex

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

Param
numRowsnumRows

The number of rows to delete.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle