spire.xls 9.9.5已正式发布。该版本新增了两个方法用于对整个工作表应用样式以及对透视表数据进行排序。此外,也修复了将xlt转为xls、excel 转为pdf和图片、创建透视表以及复制单元格范围时出现的一些问题。新功能及问题修复详情,请参阅以下内容。 新功能: 新增方法应用样式到整个工作表 cellstyle style = book.styles.add("newstyle"); style.color = color.pink; style.font.size = 15; book.worksheets[0].applystyle(style); 新增方法对透视表的数据进行排序 pivottable pt = sheet.pivottables[0] as pivottable; (pt.rowfields[0] as pivotfield).sort(true,pt.datafields[0]); //(pt.columnfields[0] as pivotfield).sort(false, pt.datafields[1]); pt.calculatedata(); 问题修复: 修复了转xlt 到 xls后,单元格颜色不正确的问题 修复了转excel…