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

{example}