News Category

Spire.Office 8.1.4 is released

2023-01-29 01:40:19

We are glad to announce the release of Spire.Office 8.1.4. In this version, Spire.Doc enhances the conversion from Word to PDF, images, and HTML; Spire.XLS enhances the conversion from Excel to PDF and XLS to XLSX; Spire.Presentation supports the function of replying to comments; Spire.Spreadsheet fixes the issue that the program threw an exception while loading an Excel file. Besides, many known issues are fixed successfully in this version. More details are listed below.

In this version, the most recent versions of Spire.Doc, Spire.PDF, Spire.XLS, Spire.Presentation, Spire.Email, Spire.DocViewer, Spire.PDFViewer, Spire.Spreadsheet, Spire.OfficeViewer, Spire.DataExport, Spire.Barcode are included.

DLL Versions:

  • Spire.Doc.dll v11.1.5
  • Spire.Pdf.dll v9.1.0
  • Spire.XLS.dll v13.1.1
  • Spire.Presentation.dll v8.1.1
  • Spire.Email.dll v5.12.19
  • Spire.DocViewer.Forms.dll v7.10.0
  • Spire.PdfViewer.Forms.dll v7.10.0
  • Spire.PdfViewer.Asp.dll v7.10.0
  • Spire.Spreadsheet.dll v6.12.0
  • Spire.OfficeViewer.Forms.dll v8.1.4
  • Spire.Barcode.dll v6.12.1
  • Spire.DataExport.dll v4.8.0
  • Spire.DataExport.ResourceMgr.dll v2.1.0
Click the link to get the version Spire.Office 8.1.4
More information of Spire.Office new release or hotfix:

Here is a list of changes made in this release

Spire.Doc

Category ID Description
Bug SPIREDOC-4770 Fixes the issue that the paging was incorrect when converting Word to PDF.
Bug SPIREDOC-8505 Fixes the issue that the result of accepting the revision was incorrect after converting Word to PDF.
Bug SPIREDOC-8634 Fixes the issue that the content changed from one column to two columns.
Bug SPIREDOC-8652 Fixes the issue that the header duplicated after converting Word to PDF.
Bug SPIREDOC-8716 Fixes the issue that the header overlapped after converting Word to PDF.
Bug SPIREDOC-8867 Fixes the issue that the title was showed incompletely after converting Word to images.
Bug SPIREDOC-8898 Fixes the issue that the bold style of table border lost when the generated doc document was opened with WPS.
Bug SPIREDOC-8964 Fixes the issue that the application threw System.ArgumentOutOfRangeException when converting Word to HTML.

Spire.XLS

Category ID Description
Bug SPIREXLS-1105 Fixes the issue that the program threw “Maximum number of extended formats exceeded”when using sheet1.CopyFrom(sheet2) method to copy the content of sheets.
Bug SPIREXLS-4310 Fixes the issue that the program threw System.ArgumentException when loading an HTML file with UTF8.
Bug SPIREXLS-4320 Fixes the issue that the bar charts protruded from the left of the axis when converting charts to images.
Bug SPIREXLS-4334 Fixes the issue that the program threw System.Xml.XmlException when converting XLS files to XLSX files.
Bug SPIREXLS-4338 Fixes the issue that CopyRangeOptions copyOptions = CopyRangeOptions.OnlyCopyFormulaValue; didn't work.
Bug SPIREXLS-4358 Fixes the issue that the program threw System.ArgumentOutOfRangeException when deleting sheets.
Bug SPIREXLS-4365 Fixes the issue that macros lost after loading and saving an XLSM file.
Bug SPIREXLS-4373 Fixes the issue that the menu functions were incorrect after protecting document.
Bug SPIREXLS-4375 Fixes the issue that calculating the formulas failed.
Bug SPIREXLS-4381 Fixes the issue that the calculated formulas' value was incorrect.
Bug SPIREXLS-4384 Fixes the issue that the date format was incorrect when converting Excel to PDF.

Spire.Presentation

Category ID Description
New feature SPIREPPT-2133 Supports the function of replying to comments.
Presentation ppt = new Presentation();
ICommentAuthor author = ppt.CommentAuthors.AddAuthor("E-iceblue", "comment");
ppt.Slides[0].AddComment(author, "Add comment", new System.Drawing.Point(18, 25), DateTime.Now);
Comment comment = ppt.Slides[0].Comments[0];
if (!comment.IsReply)
 {
 comment.Reply(author, "Add Reply1", DateTime.Now);
 comment.Reply(author, "Add Reply2", DateTime.Now);
 }
ppt.Slides[0].DeleteComment(author, "Add Reply1");
ppt.SaveToFile(outputFile, FileFormat.Pptx2013);
Bug SPIREPPT-2124 Fixes the issue that the generated chart data of Excel was changed from null to 0.
Bug SPIREPPT-2124 Fixes the issue that the shape's direction was changed after canceling the shape combination.

Spire.Spreadsheet

Category ID Description
Bug SPREADSHEET-211 Fixes the issue that the program threw System.ArgumentOutOfRangeException when loading an excel file.