我们今天发布了spire.xls 8.4.6。在该版本中,我们添加了两个新功能,并主要修复了操作excel文档中出现的一些问题,比如将excel 转换为pdf, excel保存为图片等。具体更新内容如下: 新功能: 添加了新功能在转换sheet到html时指定图片的位置类型。 htmloptions opt = new htmloptions(); opt.imagelocationtype = imagelocationtypes.tablerelative; //opt.imagelocationtype = imagelocationtypes.globalabsolute; sheet.savetohtml(string filename, htmloptions saveoption); 添加了一系列新的接口创建条件格式。 xlsconditionalformats xcfs = sheet.conditionalformats.add(); xcfs.addaveragecondition(averagetype averagetype) xcfs.addbeginswithcondition(string text); xcfs.addcellvaluecondition(comparisonoperatortype operatortype, double value1, double value2);…