GridPictureCollection.RemoveAt

GridPictureCollection.RemoveAt method

Remove shapes at the specific index

public void RemoveAt(int index)

Examples


[C#]
//add a picture
int index2 = pictures.Add(1, 1, "image.png");
//delete
pictures.RemoveAt(index2);

See Also