Ungroup

ShapeCollection.Ungroup method

Separa gli elementi della forma.

public void Ungroup(GroupShape group)
ParametroTipoDescrizione
groupGroupShapeLa 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