Using the following code, the sheet size stops at column “IV” (256 wide). How do I get a wider sheet?
//Instantiate a new workbook
Workbook workbook = new Workbook();
//Get the first worksheet in the workbook
Worksheet worksheet = workbook.Worksheets[0];
//Get the cells collection in the sheet
Cells cells = worksheet.Cells;