spire.presentation 8.6.0已发布。本次更新支持为textframe设置栏数。此外,该版本还修复了一些已知问题,如:修复了应用程序在拆分合并单元格时,抛出“merged cells found.”的问题。详情请阅读以下内容。
新功能:
- 支持为textframe设置栏数。
presentation ppt = new presentation();
ppt.loadfromfile(inputfile);
iautoshape shape1 = (iautoshape)ppt.slides[0].shapes[0];
shape1.textframe.columncount = 2;
iautoshape shape2 = (iautoshape)ppt.slides[1].shapes[0];
shape2.textframe.columncount = 3;
ppt.savetofile(outputfile, fileformat.pptx2013);
ppt.dispose();
问题修复:
- 修复了在编辑保存的ppt文件的图表数据时,有错误的问题。
- 修复了当图表数据具有某些空值时,切换行/列时遇到错误的问题。
- 修复了应用程序在拆分合并单元格时,抛出“merged cells found.”的问题。
- 修复了图表数据更新不正确的问题。
- 修复了将groupshape保存到图像后结果模糊的问题。
获取 spire.presentation 8.6.0请点击:
https://www.e-iceblue.cn/downloads/spire-presentation-net.html