zl程序教程

您现在的位置是:首页 >  后端

当前栏目

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

Net for 版本 2022 最后 Office SPIRE
2023-09-14 09:04:11 时间

谷歌能找到破解版是破坏强签名,不能用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.