原創(chuàng)|產(chǎn)品更新|編輯:李顯亮|2020-09-14 10:23:18.113|閱讀 201 次
概述:Spire.Office for .NET更新至v5.9.2,該版本新增了一些功能,例如:Spire.Presentation支持添加幻燈片到節(jié)以及刪除節(jié)中的幻燈片,Spire.Presentation支持獲取節(jié)的索引并刪除節(jié),Spire.XLS支持隱藏XLSX文檔的視圖功能。
# 界面/圖表報(bào)表/文檔/IDE等千款熱門(mén)軟控件火熱銷(xiāo)售中 >>
你在尋找支持在.NET中用編程方法處理各類(lèi)格式文檔的API嗎?好巧,.NET版企業(yè)級(jí)文檔管理組合套包Spire.Office 2020全新出發(fā)!Word、Excel、PPT、PDF、條形碼等格式一網(wǎng)打盡。操作簡(jiǎn)單,易上手,國(guó)產(chǎn)廠商提供優(yōu)質(zhì)便捷的技術(shù)支持。
目前,Spire.Office for .NET 迎來(lái)v5.9.2版的更新。該版本新增了一些功能,例如:Spire.Presentation支持添加幻燈片到節(jié)以及刪除節(jié)中的幻燈片,Spire.Presentation支持獲取節(jié)的索引并刪除節(jié),Spire.XLS支持隱藏XLSX文檔的視圖功能。此外,本次更新也修復(fù)了PPT/Word/Excel轉(zhuǎn)PDF出現(xiàn)的問(wèn)題。點(diǎn)擊下方按鈕即可下載試用↓↓↓
該版本涵蓋了最新版的Spire.Doc、Spire.PDF、Spire.XLS、Spire.Presentation、Spire.DataExport、Spire.Barcode、Spire.DocViewer、Spire.PDFViewer、Spire.OfficeViewer、Spire.Email。
Bug修復(fù)
新功能:
workbook.IsHideWindow = true;
優(yōu)化:
問(wèn)題修復(fù):
新功能:
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 }); //移動(dòng)幻燈片 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修復(fù):
Bug修復(fù):
本站文章除注明轉(zhuǎn)載外,均為本站原創(chuàng)或翻譯。歡迎任何形式的轉(zhuǎn)載,但請(qǐng)務(wù)必注明出處、不得修改原文相關(guān)鏈接,如果存在內(nèi)容上的異議請(qǐng)郵件反饋至chenjj@ke049m.cn