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

DefinedNameCollection.Clear() Method

Removes all defined names from the collection.

Namespace: DevExpress.Spreadsheet

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

Declaration

void Clear()

Remarks

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

To remove an individual defined name from the collection, use the DefinedNameCollection.Remove or DefinedNameCollection.RemoveAt methods.

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