Aspose::Cells::ExternalLinkCollection::RemoveAt method

ExternalLinkCollection::RemoveAt(int32_t) method

Removes the specified external link from the workbook.

void Aspose::Cells::ExternalLinkCollection::RemoveAt(int32_t index)
ParameterTypeDescription
indexint32_tthe index of the external link to be removed.

Remarks

When removing the external link, all formulas that reference to it will be removed too because the references become invalid.

See Also

ExternalLinkCollection::RemoveAt(int32_t, bool) method

Removes the specified external link from the workbook.

void Aspose::Cells::ExternalLinkCollection::RemoveAt(int32_t index, bool updateReferencesAsLocal)
ParameterTypeDescription
indexint32_tthe index of the external link to be removed.
updateReferencesAsLocalboolWhether update all references of given external link to reference of current workbook itself. Check Clear(bool) to get more details about this parameter.

See Also