RemoveAt

PictureCollection.RemoveAt method

Eliminar formas en el índice específico

public void RemoveAt(int index)

Ejemplos


[C#]
//añadir una imagen
int index2 = pictures.Add(1, 1, "image.png");
//Eliminar
pictures.RemoveAt(index2);

Ver también