ShapeCollection.Group

ShapeCollection.Group method

Group the shapes.

public GroupShape Group(Shape[] groupItems)
ParameterTypeDescription
groupItemsShape[]the group items.

Return Value

Return the group shape.

Remarks

The shape in the groupItems should not be grouped. The shape must be in this Shapes collection.

Examples


[C#]
//add first shape
shapes.AddRectangle(2, 0, 2, 0, 50, 50);
//add second shape
shapes.AddRectangle(6, 0, 2, 0, 30, 30);

Shape[] shapesArr = new Shape[] { shapes[0], shapes[1] };
GroupShape groupShape = shapes.Group(shapesArr);

See Also