I see in http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/named-ranges.html that I can get the specified named range of a workbook but what if I want to find a sheet specific named range? is there a way to do that?
so instead of looking at all the worksheets.
//Getting the specified named range
Range range = workbook.Worksheets.GetRangeByName("TestRange");
I want to look at 1 specific worksheet as the same named range may be in several worksheets in the workbook