Aspose::Cells::Drawing::ShapeCollection::Group method

ShapeCollection::Group method

Group the shapes.

GroupShape Aspose::Cells::Drawing::ShapeCollection::Group(const Vector<Shape> &groupItems)
ParameterTypeDescription
groupItemsconst Vector <Shape>&the group items.

ReturnValue

Return the group shape.

Remarks

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

Examples

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

Vector<Shape> shapesArr{ shapes.Get(0), shapes.Get(1) };
GroupShape groupShape = shapes.Group(shapesArr);

See Also