Spire.Presentation 6.11.2 supports getting the fill color of table cells
2021-11-12 09:48:02
We are happy to announce the release of Spire.Presentation 6.11.2. This version supports getting the fill color of table cells as well as supports setting the data label range for charts. In addition, it enhances the conversion from PowerPoint to images and also fixes the issue occurred in the process of inserting clustered column charts. More details are listed as follows. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1687 Supports getting the fill color of table cells. table.TableRows[i][j].DisplayColor; New feature SPIREPPT-1701 Supports setting the data label range for charts. Presentation ppt =…
Spire.Presentation 6.10.2 supports getting the target slide of a hyperlink
2021-10-27 07:13:00
We are glad to announce the release of Spire.Presentation 6.10.2. This version supports getting the target slide of a hyperlink. In addition, it enhances the conversion from shape to image and fixes some known issues. More details are listed below. Here is a list of changes made in this release Category ID Description New feature SPIREPPT-1698 Supports getting the target slide of a hyperlink. Presentation ppt = new Presentation(); ppt.LoadFromFile(inputFile); IAutoShape shape = ppt.Slides[1].Shapes[0] as IAutoShape; if (shape.Click.ActionType == HyperlinkActionType.GotoSlide) { ISlide targetSlide = shape.Click.TargetSlide; Console.WriteLine("index = " + targetSlide.SlideNumber); } Bug SPIREPPT-1684 Fixes the issue that the OLE object…
Spire.Presentation 6.9.5 fixes some issues occurred in the process of getting objects
2021-09-30 02:28:00
We are glad to announce the release of Spire.Presentation 6.9.5. This version fixes the issues occurred in the process of getting the correct text color of the chart legend and the correct height of the table cells. More details are listed below. Here is a list of changes made in this release Category ID Description Bug SPIREPPT-1609 SPIREPPT-1692 Fixes the issue that the OLE icon was not displayed when opened with WPS. Bug SPIREPPT-1690 Fixes the issue that it failed to get the correct height of the table cells. Bug SPIREPPT-1691 Fixes the issue that the application threw the error…