Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Inserts a new worksheet into the workbook at a specified position.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Inserts a new worksheet into the workbook at a specified position.{excerpt}
{signature:C#}
 public Worksheet InsertSheet(System.String name, int position)
Signature
{signature}{signature:vb.net
vb.net
}
Public Function InsertSheet(ByVal name As String, ByVal position As Integer) As Worksheet
Parameters

...

The name of the sheet to create and insert.

...

The 0-based position at which to insert the worksheet. If position is less than 0, it is inserted before the first sheet in the workbook. If position is equal to or greater than Worksheets.Count, it is inserted after the last worksheet.

Returns

A Worksheet object representing the inserted worksheet.

{signature}
{parameters}
{param:name}The name of the sheet to create and insert.{param}
{param:position}The 0\-based position at which to insert the worksheet. If {{position}} is less than 0, it is inserted before the first sheet in the workbook. If {{position}} is equal to or greater than [Worksheets.Count|Worksheets.Count], it is inserted after the last worksheet.{param}
{returns}A [Worksheet|Worksheet] object representing the inserted worksheet.{returns}
{example}{code:csharp|title=C#}
sheets.InsertSheet("NewSheet", 1);
{code}
{code:vb.net
|title=vb.net
}
sheets.InsertSheet("NewSheet", 1){code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle