RemoveAt

PictureCollection.RemoveAt method

Entfernen Sie Formen an dem bestimmten Index

public void RemoveAt(int index)

Beispiele


[C#]
//Bild hinzufügen
int index2 = pictures.Add(1, 1, "image.png");
//löschen
pictures.RemoveAt(index2);

Siehe auch