Spire.Doc 13.10.3 supports extracting a specified range of pages from a Word file to a separate file
2025-10-24 09:27:51
We’re pleased to announce the release of Spire.Doc 13.10.3. This version supports extracting a specified range of pages from a Word file to a different document. Meanwhile, it enhances the conversion from Word to PDF by fixing a series of known bugs. More details are given below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-11429 Added the ExtractPages(int index, int count) method to extract a specified range of pages from the document. Document doc = new Document(); doc.LoadFromFile("sample.docx"); Document extractPage = doc.ExtractPages(0, 1); extractPage.SaveToFile("result.docx"); Bug SPIREDOC-11174 Fixed the issue where content layout…
Spire.Doc 13.9.10 exposes core interfaces for fine-grained document styling control
2025-09-29 07:44:23
We're pleased to announce the release of Spire.Doc 13.9.10. This version exposes several core interfaces for fine-grained document styling control, and supports removing document style as well as applying built-in table styles. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Exposes core style interfaces ICharacterStyle, IListStyle, and ITableStyle to enable fine-grained document styling control. New feature SPIREDOC-7186 SPIREDOC-7365 Removes CharacterFormat from IStyle, now implemented in CharacterStyle, ParagraphStyle, and TableStyle. IStyle style = document.Styles.FindByName("Normal"); if (style != null && style is ICharacterStyle) { ICharacterStyle cStyle = style as…
Spire.Doc 13.9.3 supports adding PDF digital signatures and timestamps for Word to PDF conversion
2025-09-11 03:06:13
We're pleased to announce the release of Spire.Doc 13.9.3. This version introduces public classes that enable adding digital signatures and timestamps when saving PDF documents. It also exposes bookmark column properties, adds search options for OfficeMath handling during text replacement, and supports setting page layout when converting to PDF. In addition, several issues related to Word-to-PDF conversion, document loading, and page counting have been fixed. See the full details below. Here is a list of changes made in this release Category ID Description New feature - Adds public classes PdfDigitalSignatureHashAlgorithm, PdfDigitalSignatureInfo, and PdfDigitalSignatureTimestampConfiguration to enable adding digital signatures and timestamps…
Spire.Doc 13.8.1 supports comparing whether two list levels are consistent
2025-08-08 06:04:11
We're pleased to announce the release of Spire.Doc 13.8.1. This version supports comparing whether two list levels are consistent and setting or deleting the picture bullet. Besides, it has also made some adjustments to the properties and methods related to the lists in Word. More details are listed below. Here is a list of changes made in this release New feature - Added 'ListLevel.Equals' to compare whether two ListLevels are consistent. // Create a new Document object. Document document = new Document(); //Create list style 1 ListStyle listStyle_1 = document.Styles.Add(ListType.Bulleted, "bulletList"); ListLevelCollection Levels_1 = listStyle_1.ListRef.Levels; ListLevel L0 = Levels_1[0]; ListLevel…
Spire.Doc 13.7.14 supports converting Word to PDF/UA-1
2025-07-25 04:01:13
We're pleased to announce the release of Spire.Doc 13.7.14. This version adds several new features, such as support for loading EPUB files and converting Word to PDF/UA-1 format. More details are listed below. Category ID Description New feature SPIREDOC-3144 Supports loading EPUB files for processing. Document doc = new Document(); doc.LoadFromFile("in.epub", Spire.Doc.FileFormat.EPub); doc.SaveToFile(@"out.docx", Spire.Doc.FileFormat.Docx); doc.SaveToFile(@"out.pdf", Spire.Doc.FileFormat.PDF); New feature SPIREDOC-11179 Supports converting Word to PDF/UA-1 format Document doc = new Document(); doc.LoadFromFile("in.docx"); ToPdfParameterList list = new ToPdfParameterList(); list.PdfConformanceLevel = PdfConformanceLevel.Pdf_UA1; doc.SaveToFile(@"out.pdf", list); New feature SPIREDOC-11345 Adds new configuration parameters to enhance the performance and output quality of Word-to-Markdown conversion. Click the…
Spire.Doc 13.7.9 support creating combination charts
2025-07-18 06:20:49
We're pleased to announce the release of Spire.Doc 13.7.9. This version adds several new features, such as support for creating combination charts and setting image compression methods when converting Word to PDF. Besides, it also fixes an issue that header images were distorted during Doc to PDF conversion. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-9977SPIREDOC-10012 Supports creating combination charts. Document doc = new Document(); Paragraph paragraph = doc.AddSection().AddParagraph(); Chart chart = paragraph.AppendChart(ChartType.Column, 450, 300).Chart; //Modify 'Series 3' to a line chart and display it on the…
Spire.Doc 13.6.14 supports setting rounded corners on rectangle shapes
2025-06-30 09:39:20
We're pleased to announce the release of Spire.Doc 13.6.14. This version adds support for setting rounded corners on rectangle shapes, and retrieving move revisions. What’s more, it also fixes several known issues, such as the paragraph text content retrieved was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-11102 Supports setting rounded corners on rectangle shapes. if (Cobj is ShapeObject) { ShapeObject shape = (ShapeObject)Cobj; if (shape.ShapeType == ShapeType.RoundRectangle) { double cornerRadius = shape.AdjustHandles.GetRoundRectangleCornerRadius(); shape.AdjustHandles.AdjustRoundRectangle(20); } } New feature SPIREDOC-11335 Supports retrieving move revisions. DifferRevisions differRevisions =…
Spire.Doc 13.5.11 enhances the conversion from Word to PDF
2025-05-29 06:25:47
We are delighted to announce the release of Spire.Doc 13.5.11. The latest version enhances the conversion from Word to PDF. Furthermore, some known bugs are fixed in the new version, such as the issue that the values of content controls couldn't be modified. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOC-10418 SPIREDOC-10762 Fixes the issue where inconsistent pagination occurred when converting Word to PDF. Bug SPIREDOC-11177 Fixes the issue that font embedding was incorrect when converting Word to PDF. Bug SPIREDOC-11220 Fixes the issue where the "Allow row…