Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
A new property LeaderLinesColor has been introduced that helps you manage color of all leader lines via API within a Microsoft PowerPoint® presentation.
The following C# code snippet is sample of how to assign color to leader lines within a PPTX file via API:
PPTX
using (Presentation pres = new Presentation("pres.pptx")) { IChart chart = (IChart) pres.Slides[0].Shapes[0]; IChartSeriesCollection series = chart.ChartData.Series; IDataLabelCollection labels = series[0].Labels; labels.LeaderLinesColor = Color.FromArgb(255, 255, 0, 0); }
This version of API allows to apply 3D shadow effects within your presentations.
This API release introduces the support to add 3D bevel effects in your presentation slides.
This release of the API allows embedded font compression to reduce the presentation size.
The following C# sample code demonstrates how to compress fonts embedded in PPTX via API:
using (Presentation pres = new Presentation("pres.pptx")) { Aspose.Slides.LowCode.Compress.CompressEmbeddedFonts(pres); pres.Save("pres-out.pptx", SaveFormat.Pptx); }
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Slides for .NET 22.10 Release Notes.