Ungroup
ShapeCollection.Ungroup method
Delar upp formobjekten.
public void Ungroup(GroupShape group)
Parameter | Typ | Beskrivning |
---|---|---|
group | GroupShape | Gruppformen. |
Anmärkningar
Om gruppformen grupperas efter en annan gruppform kommer ingenting att göras.
Exempel
[C#]
//lägg till första formen
shapes.AddRectangle(2, 0, 2, 0, 50, 50);
//lägg till en andra form
shapes.AddRectangle(6, 0, 2, 0, 30, 30);
//grupp
Shape[] shapesArr = new Shape[] { shapes[0], shapes[1] };
GroupShape groupShape = shapes.Group(shapesArr);
//gruppera upp
shapes.Ungroup(groupShape);
Se även
- class GroupShape
- class ShapeCollection
- namnutrymme Aspose.Cells.Drawing
- hopsättning Aspose.Cells