Spire.Doc for Python 14.6.2 supports configuring license via environment variables
2026-06-18 07:07:26
We’re pleased to announce the release of Spire.Doc for Python 14.6.2. This update supports for license configuration via environment variables. More details are as follows. Here is a list of changes made in this release Category ID Description New Feature - Spire.Doc now automatically detects and loads license information from the following environment variables: SPIRE_OFFICE_LICENSE_KEY SPIRE_DOC_LICENSE_KEY SPIRE_LICENSE_KEY Click the link to download Spire.Doc for Python 14.6.2: https://www.e-iceblue.com/Download/Spire-Doc-Python.html
Spire.Doc for Python 14.6.1 improves document processing and chart operation capabilities
2026-06-08 08:59:00
We're pleased to announce the release of Spire.Doc for Python 14.6.1. This version introduces several new interfaces for processing documents and charts. Key capabilities include extracting X-axis and Y-axis values from charts, directly exporting Word files to XLSX format, and inserting SmartArt graphics into paragraphs. Moreover, an issue that occurred when converting Word to PDF has also been successfully fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New Feature - The CharacterFormat class adds the Kerning property to support setting character kerning. textRange.CharacterFormat.Kerning = kerningValue New Feature - The…
Spire.Doc for Python 14.4.2 supports converting Word to Excel
2026-04-16 05:44:25
We’re pleased to announce the release of Spire.Doc for Python 14.4.2. This version brings several valuable new features, such as converting Word to Excel, and converting MHTML to PDF. Moreover, it fixes the issue where adding a digital signature failed when converting Word to PDF. More details are as follows. Here is a list of changes made in this release Category ID Description New Feature SPIREDOC-10770 Added support for converting MHTML to PDF. document = Document() document.LoadFromFile(“input.mhtml”) document.SaveToFile(“output.pdf”, FileFormat.PDF) document.Close() New Feature SPIREDOC-11793 Added support for exporting Word mathematical formulas as standard MathML to ensure correct rendering in HTML. HtmlExportOptions…
Spire.Doc for Python 14.1.6 adds support for macOS on ARM
2026-01-23 06:27:30
We’re pleased to announce the release of Spire.Doc for Python 14.1.6. This version adds support for macOS on ARM architecture. In addition, several issues related to document property retrieval and font size settings on macOS have been fixed. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10777 Added support for macOS on ARM architecture. Bug SPIREDOC-11594 Fixed an issue where retrieving document properties in a Python v3.14 environment caused a “NotImplementedError” exception. Bug SPIREDOC-11602 Fixed an issue where setting CharacterFormat.FontSize on macOS caused a “RuntimeError: ffi_prep_cif_var failed” exception.…
Spire.Doc for Python 14.1.0 adds new interfaces for managing table styles
2026-01-09 09:16:10
We're pleased to announce the release of Spire.Doc for Python 14.1.0. This version adds new interfaces for managing and removing table styles. Additionally, it resolves an issue where enabling track changes and replacing text produced incorrect results. More details are listed below. Here is a list of changes made in this release Category ID Description Optimization - Chart namespace updated: // Old import (deprecated): from spire.doc.charts import ChartType // New import (use this): from spire.doc.charts.ChartType import ChartType New feature - The Bookmark class now includes FirstColumn and LastColumn properties to retrieve the starting and ending column indices of a bookmark…
Spire.Doc for Python 13.12.0 has optimized and enhanced the API
2025-12-08 09:02:06
We’re pleased to announce the release of Spire.Doc for Python 13.12.0. This version delivers significant API enhancements, including fine-grained format control for document elements, improved chart configuration options, and upgraded comparison features. Additionally, it introduces auxiliary function enhancements, a revamped list system, and overall API optimizations to streamline user experience. More details are as follows. Here is a list of changes made in this release Category ID Description Adjustment - Added fine-grained format control capabilities for core document elements such as paragraphs, tables, cells, borders, and styles. Class Name New Features Feature Description Paragraph GetText Retrieve the text content of…
Spire.Doc for Python 13.8.0 supports setting chart axis intervals
2025-08-14 09:25:07
We're pleased to announce the release of Spire.Doc for Python 13.8.0. This version adds support for setting chart axis intervals. Meanwhile, several issues related to text box counting, formula display, document comparison, custom properties, and content formatting 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-11307 Supports setting chart axis intervals. chart.AxisX.Units.Major = 5 chart.AxisX.Units.MajorTimeUnit= AxisTimeUnit.Days chart.AxisX.Units.BaseTimeUnit= AxisTimeUnit.Days New feature SPIREDOC-11211 Synchronizes the setDefaultSubstitutionFontName method to support setting the default substitution font. doc.DefaultSubstitutionFontName = "SimSun"; Bug SPIREDOC-10473 Fixes the issue where the count…
Spire.Doc for Python 13.4.6 supports matching and finding all keywords within paragraphs
2025-04-30 06:01:51
We are excited to announce the release of Spire.Doc for Python 13.4.6. The latest version supports matching and finding all keywords within paragraphs. Besides, some known bugs are fixed in this update, such as the issue that the text was garbled when converting Word to TXT. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-10348 SPIREDOC-11127 Supports matching and finding all keywords within paragraphs. #Create word document document = Document() #Load the document from disk. document.LoadFromFile(inputFile) #Insert the paragraphs of document for i in range(document.Sections.Count): section = document.Sections.get_Item(i)…