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 a Groups collection containing all shape groups within the worksheet.

{signature}
{example}{code:csharp|title=C#}
Groups allGroups = ws.Groups;
{code}
{code:vb.net
|title=vb.net
}
Dim allGroups As Groups = ws.Groups{code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Groups|Groups] collection containing all shape groups within the worksheet.{excerpt}
{signature:C#}
 public Groups ShapeGroups{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property ShapeGroups() As Groups
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle