Spire.Office for .NET 7.12.0 2022年最后版本?

news2024/11/19 15:37:19

谷歌能找到破解版是破坏强签名,不能用web,请把大家不要用Spire.Office for .NET is a combination of Enterprise-Level Office .NET API offered by E-iceblue. It includes Spire.Doc, Spire.XLS, Spire.Spreadsheet, Spire.Presentation, Spire.PDF, Spire.DataExport, Spire.OfficeViewer, Spire.PDFViewer, Spire.DocViewer, Spire.Barcode and Spire.Email. Spire.Office contains the most up-to-date versions of the above .NET API.

 

With Spire.Office for .NET, developers can create a wide range of applications. It enables developers to open, create, modify, convert, print, View MS Word, Excel, PowerPoint and PDF documents. Furthermore, it allows users to export data to popular files such as MS Word/Excel/RTF/Access, PowerPoint, PDF, XPS, HTML, XML, Text, CSV, DBF, Clipboard, SYLK, PostScript, PCL, etc.

Spire.Office for .NET can be linked into any type of a 32-bit or 64-bit .NET application including ASP.NET, Web Services and WinForms for .NET Framework version 2.0 to 4.5. Spire.Office also supports to work on .NET Core, .NET 5.0, .NET 6.0, Microsoft Azure, Mono Android and Xamarin.iOS.

Here is a list of changes made in this release
Spire.Doc
CategoryIDDescription
New featureSPIREDOC-8443Supports setting the transparency of the fill color for shapes.
Paragraph paragraph = section.AddParagraph();
Spire.Doc.Fields.TextBox textbox1 = paragraph.AppendTextBox(100, 50);
textbox1.Format.FillColor = Color.Red;
textbox1.FillTransparency = 0.45;
BugSPIREDOC-5456Fixes the issue that the text format was incorrect when converting Word to PDF.
BugSPIREDOC-5718Fixes the issue that paging was incorrect when converting Word to PDF.
BugSPIREDOC-7350Fixes the issue that the underline of the header overlapped the table border when converting Word to PDF.
SPIREDOC-7605
BugSPIREDOC-8539Fixes the issue that the text format was incorrect when converting RTF to PDF.
BugSPIREDOC-8635Fixes the issue that it failed to merge data when mail merging.
BugSPIREDOC-8636Fixes the issue that the program threw System.InvalidOperationException when mail merging.
BugSPIREDOC-8691Fixes the issue that doc.HasChanges returned false after modifying the content in content control when opening tracking revision function.
BugSPIREDOC-8709Fixes the issue that the content lost when converting Word to PDF.
BugSPIREDOC-8785Fixes the issue that the program threw System.NullReferenceException when converting Word to PDF.
Spire.PDF
CategoryIDDescription
New featureSPIREPDF-2713Adds a new method to compress PDF documents.
PdfCompressor compressor = new PdfCompressor(fileName);
compressor.CompressToFIle(outputName);
New feature-Supports .NET 7.0.
Supports converting PDF to PPTX.
PdfDocument pdf = new PdfDocument();
pdf.LoadFromFile(inputFile);
pdf.SaveToFile(outputFile, FileFormat.PPTX)
New featureSPIREPDF-2534Adds a new method of compressing PDF document.
SPIREPDF-4641PdfCompressor compressor = new PdfCompressor(fileName);
 compressor.CompressToFIle(outputName);
New featureSPIREPDF-5598PdfTextReplacer interface supports ignoring case.
PdfDocument doc = new PdfDocument();
doc.LoadFromFile(input);
PdfPageBase page = doc.Pages[0];
PdfTextReplacer replacer = new PdfTextReplacer(page);
PdfTextReplaceOptions option = new PdfTextReplaceOptions();
options.ReplaceType = ReplaceActionType.IgnoreCase;
replacer.Options = option;
replacer.ReplaceText("cash", "999"); 
doc.SaveToFile("output.pdf", FileFormat.PDF);
BugSPIREPDF-1264Fixes the issue that the content was incorrect when converting PDF to images.
SPIREPDF-5608
BugSPIREPDF-5443Fixes the issue that the program threw System.ArgumentException when converting PDF to Excel.
BugSPIREPDF-5527Fixes the issue that it failed to find cross-line text.
BugSPIREPDF-5556Fixes the issue that it failed to get attachments.
BugSPIREPDF-5591Fixes the issue that the background color lost after drawing TIFF images on page.
BugSPIREPDF-5596Fixes the issue that the text color was changed after drawing TIFF images on page.
BugSPIREPDF-3886Fixes the issue that printing result was incorrect when the screen font display size was not 100%.
SPIREPDF-3932
BugSPIREPDF-4506Fixes the issue that the program threw System.ArgumentNullException after setting PdfFreeTextAnnotation opacity to 1f and converting PDF to image.
BugSPIREPDF-5196Fixes the issue that the compression of PDF was invalid.
BugSPIREPDF-5363Fixes the issue that character spacing increased when converting PDF to image.
BugSPIREPDF-5488Fixes the issue that the program threw System.ArgumentException when printing a PDF with A0 size.
BugSPIREPDF-5514Fixes the issue that the content style was missing when converting PDF to Word.
BugSPIREPDF-5554Fixes the issue that top left image lost sing when converting OFD to PDF.
BugSPIREPDF-5557Fixes the issue that the image color changed when converting PDF to PDFX1A2001.
BugSPIREPDF-5563Fixes the issue that the program threw System.IndexOutOfRangeException when converting PDF to image.
BugSPIREPDF-5581Fixes the issue that the result of the finding text was incorrect.
Spire.XLS
CategoryIDDescription
New featureSPIREXLS-4120Supports CEILING.MATH formula.
Workbook workbook = new Workbook();
workbook.Worksheets[0].Range["A1"].Formula = "CEILING.MATH(-2.78,5,-1)";
workbook.CalculateAllValue();
workbook.SaveToFile("1.xlsx",ExcelVersion.Version2016);
New featureSPIREXLS-4195Supports BITOR formula.
Workbook workbook = new Workbook();
workbook.Worksheets[0].Range["A1"].Formula = "BITOR(23,10)";
workbook.CalculateAllValue();
workbook.SaveToFile("1.xlsx",ExcelVersion.Version2016);
New featureSPIREXLS-4199Supports BITAND formula.
Workbook workbook = new Workbook();
workbook.Worksheets[0].Range["A1"].Formula = "BITAND(23,10)";
workbook.CalculateAllValue();
workbook.SaveToFile("1.xlsx",ExcelVersion.Version2016);
New featureSPIREXLS-4212Supports BITLSHIFT formula.
Supports BITLSHIFT formula.
Workbook workbook = new Workbook();
workbook.Worksheets[0].Range["A1"].Formula = "BITLSHIFT(23,2)";
workbook.CalculateAllValue();
workbook.SaveToFile("1.xlsx",ExcelVersion.Version2016);
New featureSPIREXLS-4214Supports BITRSHIFT formula.
Workbook workbook = new Workbook();
workbook.Worksheets[0].Range["A1"].Formula = "BITRSHIFT(23,2)";
workbook.CalculateAllValue();
workbook.SaveToFile("1.xlsx",ExcelVersion.Version2016);
New featureSPIREXLS-4191Supports grouping shape.
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
IPrstGeomShape shape1 = worksheet.PrstGeomShapes.AddPrstGeomShape(1, 3, 50, 50, PrstGeomShapeType.RoundRect);
IPrstGeomShape shape2 = worksheet.PrstGeomShapes.AddPrstGeomShape(5, 3, 50, 50, PrstGeomShapeType.Triangle);
GroupShapeCollection groupShapeCollection = worksheet.GroupShapeCollection;
groupShapeCollection.Group(new Spire.Xls.Core.IShape[] { shape1,shape2});
workbook.SaveToFile("1.xlsx",ExcelVersion.Version2013);
New featureSPIREXLS-4194Supports "SHA-512" encryption scheme.
New featureSPIREXLS-4200Supports setting the layout pattern of the entire pivot table.
xlsPivotTable.Options.ReportLayout = PivotTableLayoutType.Tabular;
BugSPIREXLS-4161Fixes the issue that the border and the style of table lost after converting HTML to Excel.
BugSPIREXLS-4163Fixes the issue that the program threw System.NullReferenceException when getting the color of conditional formatting.
BugSPIREXLS-4164Fixes the issue that the content had an extra comma after converting chart to images.
BugSPIREXLS-4182Fixes the issue that the program did not throw an error when decrypting excel file with a wrong password.
BugSPIREXLS-4189Fixes the issue that there were blank columns after deleting hidden columns.
BugSPIREXLS-4197Fixes the issue that the content of the result document was different from that of the original document after the document was loaded and saved.
BugSPIREXLS-4211Fixes the issue that the double quotation marks were incorrect after converting Excel to CSV.
BugSPIREXLS-4218Fixes the issue that the result of the cell range calculation was incorrect.
BugSPIREXLS-4227Fixes the issue that the program threw an error "Unknown font" when getting RTF text of cell range.
BugSPIREXLS-4231Fixes the issue that the program threw an error "Shapes fail to be rendered" when converting Excel to PDF.
BugSPIREXLS-4245Fixes the issue that the program threw System.OutOfMemoryException when converting Excel to PDF.
BugSPIREXLS-4247Fixes the issue that the format was inconsistent after converting HTML to Excel.
BugSPIREXLS-4252Fixes the issue that the slicers lost after saving files as stream.
BugSPIREXLS-4254Fixes the issue that there was a prompt of content error when opening the saved document after OS language area was changed.
BugSPIREXLS-4258Fixes the issue that the program threw System.NullReferenceException when copying sheets.
Spire.Presentation
CategoryIDDescription
BugSPIREPPT-2086Fixes the issue that the chart data displayed incorrectly when creating charts with data sources containing null values.
BugSPIREPPT-2100Fixes the issue that the shapes was moved to the left when combining shapes and setting the Flip Horizontal style.
BugSPIREPPT-2104Fixes the issue that the parameters changed in the navigation bar when copying a PowerPoint page to another PowerPoint.
Spire.Spreadsheet
CategoryIDDescription
BugSPREADSHEET-210Fixes the issue that the column names overlapped after deleting columns.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/62739.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

数据库开发项目 flask + html 01

目的 开放平台(网站) 前端开发 HTML CSS JavaScript Web框架: 接受请求并处理 MySQL数据库: 存储数据 快速上手: 基于 Flask Web框架 快速搭建网站。 进阶: 基于 Django框架 1. 快速开发网站 安装框架 …

(附源码)SSM介绍信智能实现系统 毕业设计 260930

SSM介绍信智能实现系统 摘 要 科技进步的飞速发展引起人们日常生活的巨大变化,电子信息技术的飞速发展使得电子信息技术的各个领域的应用水平得到普及和应用。信息时代的到来已成为不可阻挡的时尚潮流,人类发展的历史正进入一个新时代。在现实运用中&…

java+mysql基于SSM的大学生兼职信息系统-计算机毕业设计

开发环境 运行环境: 开发工具:IDEA /Eclipse 数据库:MYSQL5.7 应用服务:Tomcat7/Tomcat8 使用框架:SSM(springspringMVCmybatis)vue 项目介绍 论文主要是对大学生兼职信息系统进行了介绍,包括研究的现状,还有涉及的开发背景,然…

分享几款免费实用的国产内网穿透工具

对于没有公网IP的用户来说,如何实现远程管理或让局域网的服务可以被公网访问到是一个问题。当然,也有很多类似的需求,比如: 微信公众号小程序开发调试公网访问本地web项目异地远程处理公司服务问题异地访问公司内网财务/管理系统…

Qt 中模型视图编程的基本概念

背景 一个应用程序本质可以抽象为三部分:界面、逻辑处理、数据。程序中存储有大量的数据,经过逻辑处理后、通过界面展示给用户,同时用户可以通过界面对数据进行编辑,如下图所示: Qt 中的模型视图架构就是用来实现大量…

Spring_第3章_AOP+事务

Spring_第3章_AOP事务 文章目录Spring_第3章_AOP事务一、AOP1 AOP简介问题导入1.1 AOP简介和作用【理解】1.2 AOP中的核心概念【理解】2 AOP入门案例【重点】问题导入2.1 AOP入门案例思路分析2.2 AOP入门案例实现【第一步】导入aop相关坐标【第二步】定义dao接口与实现类【第三…

8 常规聚类

常规聚类 聚类分析是解决数据全方位自动分组的有效方式。若将数据全体视为一个大类,这个大类很可能是由若干个包含了一定数量观测的自然小类”组成的。聚类分析的目的就是找到这些隐藏于数据中的客观存在的“自然小类”,并通过刻画“自然小类”体现数据…

舆情监控软件

随着中国互联网的快速发展,舆情监测成为工作中的一部分,如果没有舆情监控软件的及时介入,负面舆情将会迅速扩大并蔓延到各个方面,对社会以及公众造成严重的影响,舆情监控软件对企业政府有着深远影响,接下来…

Python学习小组课程P5-Python办公(2)Excel读取与Word生成

一、前言 注意:此为内部小组学习资料,非售卖品,仅供学习参考。 本系列课程: Python学习小组课程-课程大纲与Python开发环境安装 Python学习小组课程P1-Python基础(1)语法与数组 Python学习小组课程P2-Pyth…

【配电网重构】基于yalmip求解含sop+二阶锥配电网重构附matlab代码

✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。 🍎个人主页:Matlab科研工作室 🍊个人信条:格物致知。 更多Matlab仿真内容点击👇 智能优化算法 …

ouster-32激光雷达使用---雷达输出数据分析

ouster-32激光雷达使用---雷达输出数据分析雷达输出数据分析所有数据imu数据雷达数据坐标系Rviz显示雷达输出数据分析 所有数据 查看当前topic消息种类 rostopic list终端输出 /clicked_point /initialpose /move_base_simple/goal /os_node/imu_packets /os_node/lidar_pa…

ADSP-21489的开发详解:VDSP+自己编程写代码开发(2-软件和硬件的开发环境搭建)

Visual DSP软件的安装 运行 setup 软件安装包,全部下一步即可完成软件安装,非常简单。我们的资料里提供了 VDSP5.1.2 软件,当然您也可以通过 ADI 公司官网下载。 VDSP5.1.2 软件官网下载地址: Visual DSP5.1.2的ADI官网下载链接…

2022深入学习C++教程

2022深入学习C教程 课堂和实践课程 – C 11 的功能、异常处理和 STL – 适用于学术界和工业界 课程英文名:Learn C Programming -Beginner to Advance- Deep Dive in C 此视频教程共30.0小时,中英双语字幕,画质清晰无水印,源码…

Composer交互文档如何在PPT当中使用

在往期的公开课中我们讲解了SOLIDWORKS Composer这样一款三维制作软件,Composer可以很好的利用SOLIDWORKS所设计的数据自动生成产品手册、装配目录、维修说明,以及销售和培训视频等,还可以为用户提供非常满意的交互式体验。 并且Composer和S…

抖音怎么录屏?这个方法,亲测好用

​抖音是现在流行的短视频软件之一,很多小伙伴喜欢用它来记录生活,分享生活中新鲜有趣的事情。有时候,在抖音上看到了喜欢的视频,想要分享给好友,发现抖音无法分享,这个时候就需要使用到屏幕录制功能了。那…

【电力系统】含电热联合系统的微电网运行优化附matlab代码和复现论文

✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。 🍎个人主页:Matlab科研工作室 🍊个人信条:格物致知。 更多Matlab仿真内容点击👇 智能优化算法 …

我国跨国企业外汇风险管理——以海尔公司为例

目 录 摘 要 I 一、 绪论 1 (一) 选题背景及意义 1 (二) 国内研究现状 1 1. 国外研究现状 1 2. 国内研究现状 3 (三) 研究内容及方法 3 (四) 跨国企业外汇风险…

C语言 字符串

C语言 字符串引言一、字符串的创建方式二、字符串函数1. strlen 函数使用示例1使用示例2模拟 strlen 函数2. strcpy 函数使用示例模拟 strcpy 函数3. strcat 函数使用示例模拟 strcat 函数4. strcmp 函数使用示例模拟 strcmp 函数5. strncpy、strncat、strncmp6. strstr 函数使…

STC 51单片机55——加速度计GY-29 ADXL345

//实现与VB模拟鼠标通信,但是噪声很大 //采用输出角度的方式,输出x与z的角度和y与z的角度 //在VB中将屏幕水平与垂直等分1800份(角度*10得到的结果) //*************************************** // GY-29 ADXL345 IIC测试程序 // …

VIVADO时序约束之时序例外(set_false_path)

前言 当FPGA设计中的逻辑行为不能满足默认的时序要求时,设计者需要使用时序例外语法对该逻辑行为进行处理,例如:有些结果只需每个一个或多个时钟周期捕获一次。 vivado开发工具支持4个时序例外约束的语法,如下表所示:…