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

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

Signature
C#
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)
{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#}
Parameters
Param
index
index

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

Param
numRows
numRows

The number of rows to insert.

Example
Code Block
csharp
csharp
titleC#

tbl.InsertRows(2, 5);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

tbl.InsertRows(2, 5)
{code} {example}