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 worksheet from the workbook.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Deletes a worksheet from the workbook.{excerpt}
{signature:C#}
 public void Delete(System.String name)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub Delete(ByVal name As String)
Parameters
{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}
Param
namename

The name of the sheet to remove.

Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle