We are evaluating Gembox as a replacement for Aspose. I think I am going blind as one thing I cannot do is easily get the address (e.g. "B4") of an ExcelCell.
For example, when iterating through the cells, we may encounter an unexpected value and would like to tell the user where the error is.
var dodgyCell = sheet.Cells[rowIndex, colIndex];
The best workaround I have found if to create a CellRange of one cell and then use the startposition. i.e.:
var cr = sheet.Cells.GetSubrangeAbsolute(rowIndex, colIndex, rowIndex, colIndex);
var message = "Dodgy value was found in cell " + cr.StartPosition
Surely there has to be an easier way?
Cheers