[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShape.GroupItems

GroupItems Property

GroupItems

Gets the IGroupShapes object that represents the individual shapes in the specified group.

Use the indexers of IGroupShapes to return a single shape from the group.

Declaration
IGroupShapes GroupItems { get; }
ReadOnly Property GroupItems As IGroupShapes
Examples
IShape rectangle = worksheet.Shapes.AddShape("rectangle", AutoShapeType.Rectangle, 20, 20, 80, 50);
IShape oval = worksheet.Shapes.AddShape("oval", AutoShapeType.Oval, 40, 40, 80, 50);
IShape groupShape = worksheet.Shapes.Range[new int[] {0, 1}].Group();
IGroupShapes groupItems = groupShape.GroupItems;
IShape shape = groupItems["oval"];