原創|產品更新|編輯:李顯亮|2020-09-14 10:23:18.113|閱讀 193 次
概述:Spire.Office for .NET更新至v5.9.2,該版本新增了一些功能,例如:Spire.Presentation支持添加幻燈片到節以及刪除節中的幻燈片,Spire.Presentation支持獲取節的索引并刪除節,Spire.XLS支持隱藏XLSX文檔的視圖功能。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
你在尋找支持在.NET中用編程方法處理各類格式文檔的API嗎?好巧,.NET版企業級文檔管理組合套包Spire.Office 2020全新出發!Word、Excel、PPT、PDF、條形碼等格式一網打盡。操作簡單,易上手,國產廠商提供優質便捷的技術支持。
目前,Spire.Office for .NET 迎來v5.9.2版的更新。該版本新增了一些功能,例如:Spire.Presentation支持添加幻燈片到節以及刪除節中的幻燈片,Spire.Presentation支持獲取節的索引并刪除節,Spire.XLS支持隱藏XLSX文檔的視圖功能。此外,本次更新也修復了PPT/Word/Excel轉PDF出現的問題。點擊下方按鈕即可下載試用↓↓↓
該版本涵蓋了最新版的Spire.Doc、Spire.PDF、Spire.XLS、Spire.Presentation、Spire.DataExport、Spire.Barcode、Spire.DocViewer、Spire.PDFViewer、Spire.OfficeViewer、Spire.Email。
Bug修復
新功能:
workbook.IsHideWindow = true;
優化:
問題修復:
新功能:
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"); //添加幻燈片 ISlide slide03 = ppt.SectionList.InsertSlide(section02, 0, slide01); ISlide slide04 = section02.Insert(1, slide02); section02.AddRange(new ISlide[] { slide03, slide04 }); //移動幻燈片 ppt.SectionList.MoveSlide(section03, 0, slide03); section03.Move(1, slide04); //刪除幻燈片 ppt.SectionList.RemoveSlide(section03, 0); section01.RemoveAt(0); section02.RemoveRange(0, 3); section03.Remove(slide04);
int index1 = ppt.SectionList.IndexOf(section01); int index2 = section02.Index;
ppt.SectionList.RemoveAt(1); ppt.SectionList.RemoveAll();
Bug修復:
Bug修復:
本站文章除注明轉載外,均為本站原創或翻譯。歡迎任何形式的轉載,但請務必注明出處、不得修改原文相關鏈接,如果存在內容上的異議請郵件反饋至chenjj@fc6vip.cn