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 a number of rows in the worksheet above the specified row.

Signature
C#
C#
 public void InsertRows(int rowNumber, int rowCount)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub InsertRows(ByVal rowNumber As Integer, ByVal rowCount As Integer)
{signature}
{parameters}
{param:rowNumber}The 0\-based number of the row to insert.{param}
{param:rowCount}The number of rows to insert.{param}
{example}{code:csharp|title=C#}
Parameters
Param
rowNumber
rowNumber

The 0-based number of the row to insert.

Param
rowCount
rowCount

The number of rows to insert.

Example
Code Block
csharp
csharp
titleC#

ws.InsertRows(3, 100);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

ws.InsertRows(3, 100)
{code} {example}