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
{introducedin: 8.4} {description}
{excerpt}
Returns an IEnumerator for the PivotTables in a Worksheet.
{excerpt}
{signature:C#}
public IEnumerator GetEnumerator()
{signature}
{signature:vb.net}
Public Function GetEnumerator As IEnumerator
{signature}
{returns}
An enumerator for the PivotTables in a Worksheet as a System.Collections.IEnumerator
{returns}
{example}
{code:csharp\|title=C#}
IEnumerator enumerator = ws.PivotTables.GetEnumerator();
{code}
{code:vb.net\|title=vb.net}
Dim enumerator as IEnumerator = ws.PivotTables.GetEnumerator()
{code}
{example}