Group

ShapeCollection.Group method

Raggruppa le forme.

public GroupShape Group(Shape[] groupItems)
ParametroTipoDescrizione
groupItemsShape[]gli elementi del gruppo.

Valore di ritorno

Restituisce la forma del gruppo.

Osservazioni

La forma in groupItems non deve essere raggruppata. La forma deve essere in questa raccolta Shapes.

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);

Shape[] shapesArr = new Shape[] { shapes[0], shapes[1] };
GroupShape groupShape = shapes.Group(shapesArr);

Guarda anche