ExternalLinkCollection.RemoveAt

RemoveAt(int)

Removes the specified external link from the workbook.

public void RemoveAt(int index)
ParameterTypeDescription
indexInt32the 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


RemoveAt(int, bool)

Removes the specified external link from the workbook.

public void RemoveAt(int index, bool updateReferencesAsLocal)
ParameterTypeDescription
indexInt32the index of the external link to be removed.
updateReferencesAsLocalBooleanWhether update all references of given external link to reference of current workbook itself. Check Clear to get more details about this parameter.

See Also