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

Signature
C#
C#
 public void Delete(System.String name)
{signature}{signature:
}
Signature
vb.net
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#}
Parameters
Param
name
name

The name of the sheet to remove.

Example
Code Block
csharp
csharp
titleC#

sheets.Delete("Sheet3");
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

sheets.Delete("Sheet3")
{code} {example}