Spire.Doc 14.3.5 supports converting Word to Excel
2026-03-18 07:10:36
We’re pleased to announce the release of Spire.Doc for .NET 14.3.5. This release supports Word-to-Excel conversion, enabling direct export of Word content into Excel spreadsheets. In addition, export-related classes have been reorganized under a clearer namespace structure for improved API clarity. More details are as follows. Here is a list of changes made in this release Category ID Description New Feature - Added support for Word to Excel conversion. Document.SaveToFile("output.xlsx", FileFormat.XLSX); Adjustment - Moved HtmlExportOptions from Spire.Doc to Spire.Doc.Exporting. Adjustment - Moved MarkdownExportOptions from Spire.Doc to Spire.Doc.Exporting. Click the link to download Spire.Doc 14.3.5: https://www.e-iceblue.com/Download/download-word-for-net-now.html More information of Spire.Doc new…
Spire.Doc 14.3 supports adding and manipulating SmartArt
2026-03-13 05:35:56
We're pleased to announce the release of Spire.Doc 14.3. This update introduces support for the “Automatically adjust right indent when defining grid” and "Kerning for fonts" features, along with several new interfaces for adding and manipulating SmartArt graphics. Additionally, three issues affecting Word document processing have been resolved. More details are listed below. Here is a list of changes made in this release Category ID Description New Feature SPIREDOC-9870 Added support for the "Automatically adjust right indent when defining grid" feature. paragraph.Format.AdjustRightIndent = true; // Default value is true New Feature SPIREDOC-11030 Added support for the "Kerning for fonts" feature.…
Spire.Doc 14.2.7 supports hiding rows in a table
2026-02-12 09:36:51
We’re pleased to announce the release of Spire.Doc for .NET 14.2.7. This version supports hiding rows in tables, and includes several adjustments and bug fixes to enhance usability and performance. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-11444 Added support for hiding rows in tables. Spire.Doc.Document doc = new Spire.Doc.Document(); doc.LoadFromFile(inputFile1);TableRow row = doc.FirstSection.Body.Tables[0].FirstRow; row.Hidden = true;doc.SaveToFile(outputDocxFile1);doc = new Document(outputDocxFile1); row = doc.FirstSection.Body.Tables[0].FirstRow; Assert.True(row.Hidden); foreach (TableCell cell in row.Cells) { foreach (Paragraph para in cell.Paragraphs) { foreach (ParagraphBase run in para.ChildObjects) { if (run is TextRange || run is Break || run…
Spire.Doc 14.1.12 supports creating and manipulating VBA macros in Word
2026-01-21 10:24:11
We’re pleased to announce the release of Spire.Doc for .NET 14.1.12. This update introduces several valuable new features, including the ability to delete specified or blank pages in Word documents, create and manipulate VBA macros, and retrieve complete revision information from documents. In addition, multiple known issues have been resolved to improve overall stability and performance. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-3929 Added support for configuring formula conversion to MathML when converting Word to HTML. HtmlExportOptions options = doc.HtmlExportOptions; options.OfficeMathOutputMode = HtmlOfficeMathOutputMode.MathML; New feature SPIREDOC-9868…
Spire.Doc 14.1.3 enhances Word-to-PDF conversion functionality
2026-01-09 08:02:05
We are pleased to announce the release of Spire.Doc 14.1.3. This version fixed several issues that caused the program to hang for an extended period of time during document layout processing and Word-to-PDF conversion. In addition, issues related to list numbering retrieval and incorrect content conversion were resolved. Details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10843 Fixed the issue where the program hung for a long time when using new FixedLayoutDocument(document). Bug SPIREDOC-11532 Fixed the issue where the program hung for a long time when converting Word documents to…
Spire.Doc 13.12.6 adds document compatibility settings based on Word versions
2025-12-18 06:34:05
We are pleased to announce the release of Spire.Doc 13.12.6. This version added a new set of document compatibility features, allowing developers to perform compatibility operations by targeting specific Word versions. In addition, an issue related to incorrect page numbers during Word-to-PDF conversion was fixed. Details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10448 Added a CompatibilityOptions property to the Document class for performing compatibility operations on documents. Document doc = new Document(); doc.CompatibilityOptions.UlTrailSpace = false; doc.CompatibilityOptions.AdjustLineHeightInTable = true; doc.CompatibilityOptions.SpaceForUL = true; doc.CompatibilityOptions.ApplyBreakingRules = true; doc.CompatibilityOptions.DoNotExpandShiftReturn = false; doc.CompatibilityOptions.OverrideTableStyleFontSizeAndJustification…
Spire.Doc 13.12.2 supports the "Two Lines in One" function to enhance Word to PDF conversion
2025-12-10 11:39:04
We're pleased to announce the release of Spire.Doc 13.12.2. This version supports the "Two Lines in One" function, enhancing the effect of converting Word to PDF. It also adds support for setting the "Horizontal in Vertical" property of Paragraph text, copying styles from template documents when converting Markdown to Docx, and retrieving style change revisions. Meanwhile, some issues that occurred when converting or loading Word documents have also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New Feature SPIREDOC-5504 Supports setting the "Horizontal in Vertical" property of…
Spire.Doc 13.11.5 enhances the display effect of formulas
2025-11-25 07:06:16
We're pleased to announce the release of Spire.Doc 13.11.5. This version optimizes OfficeMath handling and enhances the display effect of formulas. More details are listed below. Here is a list of changes made in this release Category ID Description Optimization - Optimized OfficeMath processing capabilities and enhanced the display effects of formula line wrapping and revisions. Click the link to download Spire.Doc 13.11.5: https://www.e-iceblue.com/Download/download-word-for-net-now.html More information of Spire.Doc new release or hotfix: https://www.e-iceblue.com/forum/spire-doc-new-release-or-hotfix-t4749.html