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 an IEnumerator for the SeriesCollection of a Chart

Signature
C#
C#
public IEnumerator GetEnumerator()
{signature}
{signature:
}
Signature
vb.net
vb.net
Public Function GetEnumerator As IEnumerator
{signature}
{returns}
An enumerator for the SeriesCollection of a Chart as a 
Returns

An enumerator for the SeriesCollection of a Chart as a System.Collections.IEnumerator

{returns} {example} {code:csharp|title=C#}

Example
Code Block
csharp
csharp
titleC#

IEnumerator enumerator = chart.SeriesCollection.GetEnumerator();
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim enumerator as IEnumerator = chart.SeriesCollection.GetEnumerator()
{code} {example}