Ungroup
ShapeCollection.Ungroup method
Separa gli elementi della forma.
public void Ungroup(GroupShape group)
Parametro | Tipo | Descrizione |
---|---|---|
group | GroupShape | La forma del gruppo. |
Osservazioni
Se la forma del gruppo è raggruppata da un’altra forma del gruppo, non verrà fatto nulla.
Esempi
[C#]
//aggiungi la prima forma
shapes.AddRectangle(2, 0, 2, 0, 50, 50);
//aggiungi la seconda forma
shapes.AddRectangle(6, 0, 2, 0, 30, 30);
//gruppo
Shape[] shapesArr = new Shape[] { shapes[0], shapes[1] };
GroupShape groupShape = shapes.Group(shapesArr);
//separa
shapes.Ungroup(groupShape);
Guarda anche
- class GroupShape
- class ShapeCollection
- spazio dei nomi Aspose.Cells.Drawing
- assemblea Aspose.Cells