Spire.Presentation 5.8.5已于今日发布。该版本新增了Insert和Append方法用于添加节,同时也支持为节添加、移动、删除幻灯片,以及获取节的索引和删除节。除此之外,一些在转换PPT到PDF、加载、操作文档时出现的问题也得以成功解决。详情见下文。 新功能: 新增Insert和Append方法用于添加节。 Section sect01 = ppt.SectionList.Insert(0, "section1"); Section sect02 = ppt.SectionList.Append("section2"); 支持为节添加、移动和删除幻灯片。 ISlide slide01 = ppt.Slides.Append(); ISlide slide02 = ppt.Slides.Append(); Section section01 = ppt.SectionList.Add("section1", slide01); Section section02 = ppt.SectionList.Insert(1, "section2"); Section section03 = ppt.SectionList.Append("section3");…