原創|產品更新|編輯:李顯亮|2020-08-20 11:09:21.060|閱讀 206 次
概述:Spire.Office for .NET更新至v5.8.5,該版本新增了一些功能,如Spire.Doc添加了比較功能、Spire.Presentation支持添加節和設置SmartArt節點的輪廓線樣式、Spire.PDF將PDF轉換為Excel時支持圖表,歡迎下載體驗。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
你在尋找支持在.NET中用編程方法處理各類格式文檔的API嗎?好巧,.NET版企業級文檔管理組合套包Spire.Office 2020全新出發!Word、Excel、PPT、PDF、條形碼等格式一網打盡。操作簡單,易上手,國產廠商提供優質便捷的技術支持。
目前,Spire.Office for .NET 迎來v5.8.5版的更新。該版本新增了一些功能,如Spire.Doc添加了比較功能、Spire.Presentation支持添加節和設置SmartArt節點的輪廓線樣式、Spire.PDF將PDF轉換為Excel時支持圖表。此外,也修正了將Word轉換為PDF/ Epub、Excel轉換為PDF、PPT轉換為PDF、XPS轉換為PDF、更新Excel數據透視表、合并PDF文檔以及從PDF文件中提取文本時出現的一些問題。點擊下方按鈕即可下載試用↓↓↓
該版本涵蓋了最新版的Spire.Doc、Spire.PDF、Spire.XLS、Spire.Presentation、Spire.DataExport、Spire.Barcode、Spire.DocViewer、Spire.PDFViewer、Spire.OfficeViewer、Spire.Email。
新功能
Bug修復
問題修復:
新功能:
Presentation presentation = new Presentation(); presentation.LoadFromFile(pptfile); ISlide slide = presentation.Slides[0]; //添加節 presentation.SectionList.Add("section1", slide); //獲取節 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修復:
新功能:
Document doc1 = new Document(); doc1.LoadFromFile(inputFile2); Document doc2 = new Document(); doc2.LoadFromFile(inputFile1); doc1.Compare(doc2, "summer"); doc1.SaveToFile(outputFile); doc1.Dispose();
調整:
Bug修復:
本站文章除注明轉載外,均為本站原創或翻譯。歡迎任何形式的轉載,但請務必注明出處、不得修改原文相關鏈接,如果存在內容上的異議請郵件反饋至chenjj@fc6vip.cn