Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

DefinedNameCollection.Remove(DefinedName) Method

Removes the specified defined name from the collection.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

void Remove(
    DefinedName item
)

Parameters

Name Type Description
item DefinedName

A DefinedName object to be removed form the collection.

Remarks

Note that calling the Remove method also disposes all elements removed from the collection.

To remove a defined name specified by its index in the collection, use the DefinedNameCollection.RemoveAt method. To remove all defined names from the collection, use the DefinedNameCollection.Clear method.

Note

After you delete a defined name, all cells using that name will display the #NAME? error. After you delete a named cell or cell range, all cells using defined names that refer to the deleted cell or cell range will display the #REF! error.

To add a new defined name to the collection, use the DefinedNameCollection.Add method.

See Also