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

أنظر أيضا