Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Deletes a specified row and its contents from the worksheet. Rows below the deleted row will be moved up.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Deletes a specified row and its contents from the worksheet. Rows below the deleted row will be moved up.{excerpt}
{signature:C#}
 public void DeleteRow(int rowNumber)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub DeleteRow(ByVal rowNumber As Integer)
Parameters
{signature}
{parameters}
{param:rowNumber}The 0\-based number of the row to remove.{param}
{example}{code:csharp|title=C#}
ws.DeleteRow(70);
{code}
{code:vb.net
|title=vb.net
}
ws.DeleteRow(70){code}

{example}
Param
rowNumberrowNumber

The 0-based number of the row to remove.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle