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 number of rows and its contents from the worksheet. Rows below the deleted rows will be moved up.{excerpt}
{signature:C#}
 public void DeleteRows(int rowNumber, int rowCount)
{signature}{signature:vb.net}
Public Sub DeleteRows(ByVal rowNumber As Integer, ByVal rowCount As Integer)
{signature}
{parameters}
{param:rowNumber}The 0\-based number of the row to remove.{param}
{param:rowCount}The number of the rows to remove.{param}
{example}{code:csharp|title=C#}
ws.DeleteRows(70, 500);{code}
{code:vb.net|title=vb.net}
ws.DeleteRows(70, 500){code}

{example}