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
vb.net
vb.net
Public Sub InsertRows(ByVal rowNumber As Integer, ByVal rowCount As Integer)
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 Block
vb.net
vb.net
titlevb.net
ws.InsertRows(3, 100)