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
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:vb.net}
Public Sub DeleteRow(ByVal rowNumber As Integer)
{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}