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

Returns a Worksheets collection which provides access to all worksheets in the specified workbook, including charts displayed as sheets.

Signature
C#
C#
 public Worksheets Worksheets{ get; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property Worksheets() As Worksheets
{signature}
{remarks}
Use the {{Worksheets}} object to manage the worksheets in a workbook.
ExcelWriter may not be able to parse some worksheets \(such as macro sheets\).

{remarks}
{example}{code:csharp|title=C#}
Remarks

Use the Worksheets object to manage the worksheets in a workbook.
ExcelWriter may not be able to parse some worksheets (such as macro sheets).

Example
Code Block
csharp
csharp
titleC#

Worksheets wkshts = wb.Worksheets;
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim wkshts As Worksheets = wb.Worksheets
{code} {example}