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 an IEnumerator for the Groups in a Worksheet


{returns}
{example}
{code:csharp|title=C#}
IEnumerator enumerator = ws.ShapeGroups.GetEnumerator();
{code}
{code:vb.net
|title=vb.net
}
Dim enumerator as IEnumerator = ws.ShapeGroups.GetEnumerator()
{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}
Returns an IEnumerator for the Groups in a Worksheet
{excerpt}
{signature:C#}
public IEnumerator GetEnumerator()
Signature
{signature}
{signature:vb.net
vb.net
}
Public Function GetEnumerator As IEnumerator
Returns
An enumerator for the Groups in a Worksheet as a
{signature}
{returns}
An enumerator for the Groups in a Worksheet as a System.Collections.IEnumerator
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle