Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
70
Excel Workbook.Load CellFormat bug?
posted
Workbook workbook = Workbook.Load("GenericReport.xls");
Worksheet currentSheet = workbook.Worksheets[0];

And then I do

 someCell.CellFormat.Font.Color = Color.White;
someCell.CellFormat.FillPatternBackgroundColor = Color.Black;

and then

workbook.Save(location);

I load the workbook because I have a macro in there. But then the style doesn't get applied. If I just do:

Workbook workbook = new Workbook();
workbook.Worksheets.Add("blah");
Worksheet currentSheet = Workbook.Worksheets[0];

then the style gets applied. Tips? ;)

Parents Reply Children
No Data