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(int position)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub Delete(ByVal position As Integer)
{signature}
{parameters}
{param:position}The 0\-based sheet position.{param}
{example}{code:csharp|title=C#}
Parameters
Param
position
position

The 0-based sheet position.

Example
Code Block
csharp
csharp
titleC#

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

sheets.Delete(0)
{code} {example}