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

Signature
C#C#
Wiki Markup
{description}
{excerpt}Inserts a number of rows in the worksheet above the specified row.{excerpt}
{signature: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)
Parameters
{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#}
ws.InsertRows(3, 100);
{code}
{code:vb.net
|title=vb.net
}
ws.InsertRows(3, 100){code}

{example}
Param
rowNumberrowNumber

The 0-based number of the row to insert.

Param
rowCountrowCount

The number of rows to insert.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle