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 worksheet from the workbook.{excerpt}
{signature:C#}
 public void Delete(System.String name)
{signature}{signature:vb.net}
Public Sub Delete(ByVal name As String)
{signature}
{parameters}
{param:name}The name of the sheet to remove.{param}
{example}{code:csharp|title=C#}
sheets.Delete("Sheet3");{code}
{code:vb.net|title=vb.net}
sheets.Delete("Sheet3"){code}

{example}