Aspose.Slides for .NET 24.5 helps developers improve presentation creation, manipulation, and conversion capabilities. By downloading the MSI installer of this release, developers can use new features for enhanced control over table transparency and chart data label formatting.
The C# PowerPoint API version 24.5 supports controlling the transparency of table fill colors using the new Transparency
property in ICellFormat
and ITableFormat
. The following code example highlights how to use the new property in C#:
using (Presentation presentation = new Presentation("pres.pptx"))
{
ITable table = (ITable)presentation.Slides[0].Shapes[0];
table.TableFormat.Transparency = 0.5f;
}
Source*
Maintaining chart formatting while saving the presentations within your .NET applications is now supported in Aspose.Slides for .NET.
Streamlined Conversions
.NET developers can experience better handling of charts, images, and text elements during conversions using this update to the C# API.
Set Default Font Size
Aspose.Slides for .NET version 24.5 allows users to set the default font size for text boxes across the presentation slides.
Resolved Issues
Numerous problems related to PPTX/ODP conversions, memory usage, and image rendering have been resolved in the latest release of Aspose.Slides for .NET.
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for .NET 24.5 Release Notes.