Ungroup
ShapeCollection.Ungroup method
Hebt die Gruppierung der Formelemente auf.
public void Ungroup(GroupShape group)
Parameter | Typ | Beschreibung |
---|---|---|
group | GroupShape | Die Gruppenform. |
Bemerkungen
Wenn das Gruppen-Shape von einem anderen Gruppen-Shape gruppiert wird, wird nichts getan.
Beispiele
[C#]
// erste Form hinzufügen
shapes.AddRectangle(2, 0, 2, 0, 50, 50);
// zweite Form hinzufügen
shapes.AddRectangle(6, 0, 2, 0, 30, 30);
//Gruppe
Shape[] shapesArr = new Shape[] { shapes[0], shapes[1] };
GroupShape groupShape = shapes.Group(shapesArr);
//Gruppierung aufheben
shapes.Ungroup(groupShape);
Siehe auch
- class GroupShape
- class ShapeCollection
- namensraum Aspose.Cells.Drawing
- Montage Aspose.Cells