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 [Charts|Charts] collection containing all the charts contained as objects within this worksheet. Use this collection to add, access, and remove charts from the worksheet.{excerpt}
{signature:C#}
 public Charts Charts{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Charts() As Charts
{signature}
{example}{code:csharp|title=C#}
Charts allCharts = ws.Charts;{code}
{code:vbnet|title=vb.net}
Dim allCharts As Charts = ws.Charts{code}

{example}