We are excited to announce the release of Spire.Presentation 7.5.3. This version adds a method called GetAllTextFrame to get text content of a slide. In addition, it fixes some known issues such as the position of the text in the text box is incorrect when converting PowerPoint to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIRE.PPT-1933 Adds a method of getting text content of a slide,slide.GetAllTextFrame() Presentation ppt = new Presentation(); ppt.LoadFromFile(inputFile); foreach (ISlide slide in ppt.Slides) { ArrayList arrayList = slide.GetAllTextFrame(); foreach (String text in…
We are pleased to announce the release of Spire.Doc for Java 10.5.10. This version supports setting “Snap to grid when document grid is defined” for word file paragraph, and enhances the conversion from Word to PDF. In addition, it fixes some known issues such as the page number obtained was incorrect. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREDOC-7777 Supports setting "Snap to grid when document grid is defined" for word file paragraph. Document document = new Document(inputFile); Paragraph pa = document.getSections().get(0).getParagraphs().get(0); pa.getFormat().setSnapToGrid(true); Bug SPIREDOC-6873 Fixes the…
We are excited to announce the release of Spire.PDF for Java 8.5.8. This version enhances the translation from PDF to Excel, Word, PDF/A as well as PDFA1B and OFD to PDF. In addition, it fixes some known issues such as that the row height narrowed after merging cells. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPDF-4216 Fixes the issue that some texts repeated after converting PDF to Excel. Bug SPIREPDF-4895 Fixes the issue that the text became an image after converting PDF to Excel. Bug SPIREPDF-4994 Fixes the…
We are excited to announce the release of Spire.XLS 12.5.3. This version provides an overload of InsertArray method, which supports setting whether to automatically convert date string to datetime format when inserting arrays into Excel document. In addition, it enhances the conversion from Excel to PDF and fixes some known issues such as the application threw "Invalid file format" when loading XML. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-3852 Provides an overload of InsertArray method, which supports setting whether to automatically convert date string to datetime…
We are excited to announce the release of Spire.DocViewer 7.5.0. This release fixes the issue that the format of some content is inconsistent with that of the original Word document when being viewed. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREDOCVIEWER-88 Fixes the issue that the format of some content is inconsistent with that of the original Word document when being viewed. Click the link to download Spire.DocViewer 7.5.0: https://www.e-iceblue.com/Download/download-docviewer-for-net-now.html
We are glad to announce the release of Spire.OfficeViewer 7.5.0. This release fixes the issue that the page count increases when viewing Word documents. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREOFFICEVIEWER-17 Fixes the issue that the page count increases when viewing Word documents. Click the link to download Spire.OfficeViewer 7.5.0: https://www.e-iceblue.com/Download/download-spire-office-viewer-net.html
We are happy to announce the release of Spire.Presentation for Java 7.5.2. This release supports setting the color of SeriesLines and the effect of chart animation by series. Additionally, it enhances the conversion from PowerPoint documents to images and PowerPoint documents to PDF. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1922 Supports setting the color of SeriesLines. Presentation ppt = new Presentation(); ppt.loadFromFile(inputFile); IChart chart = (IChart) ppt.getSlides().get(1).getShapes().get(3); TextLineFormat seriesLine = chart.getSeriesLine(); seriesLine.setFillType(FillFormatType.SOLID); seriesLine.getFillFormat().getSolidFillColor().setColor(Color.RED); ppt.saveToFile(outputFile, FileFormat.AUTO); ppt.dispose(); New feature SPIREPPT-1938 Supports settings the effect of chart animation…
We are excited to announce the release of Spire.XLS 12.5.1. This release supports centering text via IPrstGeomShape class. It also enhances the conversion from Excel to PDF, HTML as well as CSV, and optimizes the time and memory used for formatting cell numbers. Moreover, it fixes some known issues such as the issue that the data was not correct when transferring Excel data to a data table. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREXLS-3806 IPrstGeomShape Implements the style of centered text. IPrstGeomShape shape = book.Worksheets[0].PrstGeomShapes[0]; shape.TextVerticalAlignment…
page 87