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 row in the worksheet above the specified row.

Signature
C#
C#
 public void InsertRow(int rowNumber)
Signature
vb.net
vb.net
Public Sub InsertRow(ByVal rowNumber As Integer)
Parameters
Param
rowNumber
rowNumber

The 0-based number of the row to insert.

Example
Code Block
csharp
csharp
titleC#
ws.InsertRow(3);
Code Block
vb.net
vb.net
titlevb.net
ws.InsertRow(3)