Remove

ShapeCollection.Remove method

移除形状。

public void Remove(Shape shape)
范围类型描述
shapeShape

例子


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

//获取形状
Shape s = shapes["Rectangle 1"];// 或形状[0];
if (s != null)
{
    //消除 
    shapes.Remove(s);
}

也可以看看