原創(chuàng)|產(chǎn)品更新|編輯:李顯亮|2020-08-20 11:09:21.060|閱讀 206 次
概述:Spire.Office for .NET更新至v5.8.5,該版本新增了一些功能,如Spire.Doc添加了比較功能、Spire.Presentation支持添加節(jié)和設(shè)置SmartArt節(jié)點(diǎn)的輪廓線樣式、Spire.PDF將PDF轉(zhuǎn)換為Excel時支持圖表,歡迎下載體驗。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
你在尋找支持在.NET中用編程方法處理各類格式文檔的API嗎?好巧,.NET版企業(yè)級文檔管理組合套包Spire.Office 2020全新出發(fā)!Word、Excel、PPT、PDF、條形碼等格式一網(wǎng)打盡。操作簡單,易上手,國產(chǎn)廠商提供優(yōu)質(zhì)便捷的技術(shù)支持。
目前,Spire.Office for .NET 迎來v5.8.5版的更新。該版本新增了一些功能,如Spire.Doc添加了比較功能、Spire.Presentation支持添加節(jié)和設(shè)置SmartArt節(jié)點(diǎn)的輪廓線樣式、Spire.PDF將PDF轉(zhuǎn)換為Excel時支持圖表。此外,也修正了將Word轉(zhuǎn)換為PDF/ Epub、Excel轉(zhuǎn)換為PDF、PPT轉(zhuǎn)換為PDF、XPS轉(zhuǎn)換為PDF、更新Excel數(shù)據(jù)透視表、合并PDF文檔以及從PDF文件中提取文本時出現(xià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ù)
問題修復(fù):
新功能:
Presentation presentation = new Presentation(); presentation.LoadFromFile(pptfile); ISlide slide = presentation.Slides[0]; //添加節(jié) presentation.SectionList.Add("section1", slide); //獲取節(jié) Section section; String name; for (int i = 0; i < presentation.SectionList.Count; i++) { section = presentation.SectionList[i]; name = section.Name; foreach (long id in section.SlideIdList) { } }
ISmartArt smartArt = presentation.Slides[0].Shapes[0] as ISmartArt; int count =smartArt.Nodes.Count; ISmartArtNode node; for (int i = 0; i < count; i++) { node = smartArt.Nodes[i]; node.Line.FillType = FillFormatType.Solid; node.Line.SolidFillColor.Color = Color.Gray; node.Line.Width = 2; }
ISmartArt smartArt = presentation.Slides[0].Shapes[0] as ISmartArt; int count =smartArt.Nodes.Count; ISmartArtNode node; for (int i = 0; i < count; i++) { node = smartArt.Nodes[i]; node.LinkLine.FillType = FillFormatType.Solid; node.LinkLine.SolidFillColor.Color = Color.Gray; node.LinkLine.Width = 2; node.LinkLine.DashStyle = LineDashStyleType.SystemDash; }
Bug修復(fù):
新功能:
Document doc1 = new Document(); doc1.LoadFromFile(inputFile2); Document doc2 = new Document(); doc2.LoadFromFile(inputFile1); doc1.Compare(doc2, "summer"); doc1.SaveToFile(outputFile); doc1.Dispose();
調(diào)整:
Bug修復(fù):
本站文章除注明轉(zhuǎn)載外,均為本站原創(chuàng)或翻譯。歡迎任何形式的轉(zhuǎn)載,但請務(wù)必注明出處、不得修改原文相關(guān)鏈接,如果存在內(nèi)容上的異議請郵件反饋至chenjj@fc6vip.cn