Code breaking changes:
Formula system does not work the way it used to, so the previous code might break. For backward compatibility, I have included a static class FormulaHelper which can be used with the previous code. Just replace the previous code in the following way:
1: cell.Value = new Formula("Sum", new Range(sheet[3, 3], sheet[6, 3]));
to
1: cell.Value = FormulaHelper.Formula("Sum",
2: new Range(sheet[3, 3], sheet[6, 3]));
Changes:
-
New Formula system implemented.
-
RowSpan and ColumnSpan properties added to cell.
-
Small error in named range rename fixed.
-
Freeze column won't work if freeze row is set. Fixed.
-
Style was not saved in Column export. Fixed.
-
Assembly file contained wrong information about this library. Fixed.
-
Workbook export can throw a NullReferenceException when new XmlWriter is created. Fixed.
-
Documented IStyle interfaces.
For a full brief list of features, look here. For a detailed feature set, download the documentation from the page mentioned.
Downloads