Attached is a spreadsheet. Here is the code to read it:
class Program
{
private static readonly Workbook wb = new Workbook();
static void Main(string[] args)
{
wb.Open(@"c:\temp\don.xls");
Worksheet ws = wb.Worksheets[0];
Cell c = ws.Cells[17, 1];
Border b = c.Style.Borders[BorderType.RightBorder];
}
The right border is not being found even though it appears in Excel and the properties.