Yogesh Jagota's Personal Blog
small c# code snippets and free code libraries

Excel Xml Library 3.06 released

Wednesday, 23 July 2008 15:44 by Yogesh Jagota

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

Del.icio.usDigg It!DZone It!kick it on DotNetKicks.com
Tags:  
Categories:   Excel Xml Library
Actions:   E-mail | Permalink | Comments (3) | Comment RSSRSS comment feed

Comments

Add comment


 

biuquote
Loading