I'm trying to find the defined name of a cell in an Excel file in C#, I tried to find the value and I succeeded in that but I'm not able to find the name. Here is my code that succeeds in finding the value:
Application application = new Application();
Workbook workBook = application.Workbooks.Open(requestSheetPath, 0, true, 5, "", "", true, XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
Worksheet workSheet = (Worksheet)workBook.Worksheets.get_Item(sheet);
Range range = workSheet.UsedRange;
if (range.Cells[column, row] != null && range.Cells[column, row].Value2 != null)
return range.Cells[column, row].Value2.ToString();
How can I find the defined name?