Page tree

Versions Compared

Key

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

Excerpt

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

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Worksheets|Worksheets] collection which provides access to all worksheets in the specified workbook, including charts displayed as sheets. {excerpt}
{signature:C#}
 public Worksheets Worksheets{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Worksheets() As Worksheets
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).

{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#}
Worksheets wkshts = wb.Worksheets;
{code}
{code:vb.net
|title=vb.net
}
Dim wkshts As Worksheets = wb.Worksheets{code}

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