Page tree

Versions Compared

Key

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

Excerpt

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

Signature
C#C#
Wiki Markup
{description}
{excerpt}Inserts one or more rows at the specified position in the table.{excerpt}
{signature:C#}
 public void InsertRows(int index, int numRows)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub InsertRows(ByVal index As Integer, ByVal numRows As Integer)
Parameters
{signature}
{parameters}
{param:index}The 0\-based index of the first row to insert.{param}
{param:numRows}The number of rows to insert.{param}
{example}{code:csharp|title=C#}
tbl.InsertRows(2, 5);
{code}
{code:vb.net
|title=vb.net
}
tbl.InsertRows(2, 5){code}

{example}
Param
indexindex

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

Param
numRowsnumRows

The number of rows to insert.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle