Aspose::Cells::Drawing::TextBoxCollection::RemoveAt method

TextBoxCollection::RemoveAt method

Remove a text box from the file.

void Aspose::Cells::Drawing::TextBoxCollection::RemoveAt(int32_t index)
ParameterTypeDescription
indexint32_tThe text box index.

Examples

int index3 = textBoxCollection.GetCount() - 1;
textBoxCollection.RemoveAt(index3);

See Also