Hi,
I have found a problem with XlsIO when trying to create a worksheet and populate it with data programmatically.
The last line, SetValueRowCell, throws an ArgumentOutOfRangeException.
If I use:
worksheet.Range["A1"].Text = "hello";
The value is set without exception. However, I do not want to reference cells by their string coordinate, I want to use integer row/column indexes.
Is there something I am doing wrong in my example? Do I need to initialise the cells in some way before setting the value?
Thanks,
Josh