spire.presentation 5.2.1现已发布。该版本支持给smartart的结点添加超链接,同时也支持ppt转html时,给每个shape指定唯一标识符。除此之外,一些在ppt转pdf和操作文档时出现的问题也得以解决。详情如下。 新功能: 支持了给smartart的结点添加超链接. if (shape is ismartart) { //get the smartart ismartart smartart = shape as ismartart; ismartartnode node = smartart.nodes[0]; node.click = new clickhyperlink(presentation.slides[0]); //node.click = new clickhyperlink("https://www.e-iceblue.com"); } 支持了转换ppt到html,给每个shape指定唯一标识符。 savetohttpresponse方法支持了ppsx文档。 问题修复: 修复了转换ppt到pdf,图表多出线条的问题。 修复了转换ppt到pdf,图表数据标签旋转角度不正确的问题。…