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

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

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

The 0-based number of the row to remove.

Example
Code Block
csharp
csharp
titleC#
ws.DeleteRow(70);
Code Block
vb.net
vb.net
titlevb.net
ws.DeleteRow(70)