[]
Clears the IName collection.
Removes all defined names from this collection, including names in the current workbook or worksheet scope represented by this INames instance.
void Clear()
Sub Clear()
worksheet.Range["A1"].Value = "North";
INames names = worksheet.Names;
names.Add("RegionName", "=Sheet1!$A$1");
names.Clear();