RemoveAt

ShapeCollection.RemoveAt method

Entfernen Sie die Form.

public void RemoveAt(int index)
ParameterTypBeschreibung
indexInt32Der Index der Form.

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

//Löschen 
shapes.RemoveAt(0);

Siehe auch