Group

ShapeCollection.Group method

对形状进行分组。

public GroupShape Group(Shape[] groupItems)
范围类型描述
groupItemsShape[]组项目。

返回值

返回组形状。

评论

groupItems 中的形状不应分组。 形状必须在此 Shapes 集合中。

例子


[C#]
//添加第一个形状
shapes.AddRectangle(2, 0, 2, 0, 50, 50);
//添加第二个形状
shapes.AddRectangle(6, 0, 2, 0, 30, 30);

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

也可以看看