Remove

ShapeCollection.Remove method

Entfernen Sie die Form.

public void Remove(Shape shape)
ParameterTypBeschreibung
shapeShape

Beispiele


[C#]
// erste Form hinzufügen
shapes.AddRectangle(2, 0, 2, 0, 50, 50);
// zweite Form hinzufügen
shapes.AddRectangle(6, 0, 2, 0, 30, 30);

// Holen Sie sich die Form
Shape s = shapes["Rectangle 1"];// oder Formen[0];
if (s != null)
{
    //Löschen 
    shapes.Remove(s);
}

Siehe auch