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

Creates a new worksheet after the last existing worksheet in this workbook.

Signature
C#
C#
 public Worksheet CreateWorksheet(System.String name)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function CreateWorksheet(ByVal name As String) As Worksheet
{signature}
{parameters}
{param:name}Name for the new worksheet.{param}
{returns}A [Worksheet|Worksheet] object representing the worksheet created.{returns}
{example}{code:csharp|title=C#}
Parameters
Param
name
name

Name for the new worksheet.

Returns

A Worksheet object representing the worksheet created.

Example
Code Block
csharp
csharp
titleC#

Worksheet ws = sheets.CreateWorksheet("NewSheet");
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim ws As Worksheet = sheets.CreateWorksheet("NewSheet")
{code} {example}