Aspose::Cells::Drawing::PictureCollection::RemoveAt method

PictureCollection::RemoveAt method

Remove shapes at the specific index.

void Aspose::Cells::Drawing::PictureCollection::RemoveAt(int32_t index)

Examples

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

See Also