[]
Represents a collection of GroupShape objects.
public class GroupShapeCollection : ContentObjectCollection<GroupShape>, IContentList<GroupShape>, IReadOnlyList<GroupShape>, IReadOnlyCollection<GroupShape>, IEnumerable<GroupShape>, IEnumerable
Adds a GroupShape to this collection at the End location.
public GroupShape Add()
The added GroupShape.
Inserts a GroupShape into this collection at the End location.
public GroupShape Add(float width, float height)
width
floatThe group shape width, in points.
height
floatThe group shape height, in points.
The inserted GroupShape.
Inserts a GroupShape into this collection at a specified location.
public GroupShape Insert(RangeLocation location)
location
RangeLocationThe target RangeLocation for the insertion.
The inserted GroupShape.
Inserts a GroupShape into this collection at a specified location.
public GroupShape Insert(float width, float height, RangeLocation location)
width
floatThe group shape width, in points.
height
floatThe group shape height, in points.
location
RangeLocationThe target RangeLocation for the insertion.
The inserted GroupShape.