Remove
ShapeCollection.Remove method
移除形状。
public void Remove(Shape shape)
范围 | 类型 | 描述 |
---|---|---|
shape | Shape |
例子
[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);
}
也可以看看
- class Shape
- class ShapeCollection
- 命名空间 Aspose.Cells.Drawing
- 部件 Aspose.Cells