Browse our Products

Aspose.Slides for Python via .NET 24.5 Release Notes

New Features and Enhancements

KeySummaryCategoryRelated Documentation
SLIDESNET-44522API returns wrong Excel sheet namesInvestigationhttps://docs.aspose.com/slides/python-net/chart-workbook/
SLIDESNET-44420Set a default font size for all text boxes on all the slidesFeature
SLIDESNET-44282Set the transparency for tablesFeaturehttps://docs.aspose.com/slides/python-net/manage-table/

Other Improvements and Changes

KeySummaryCategoryRelated Documentation
SLIDESPYNET-167Use Aspose.Slides for Net 24.5 featuresEnhancementhttps://releases.aspose.com/slides/net/release-notes/2024/aspose-slides-for-net-24-5-release-notes/
SLIDESPYNET-132Background is missing when rendering the cloned slideBug

Public API Changes

ShapeElement and ShapeUtil members declared as obsolete Modern API

The following methods and properties are declared as obsolete and will be removed in version 24.8:

EnumerableFrameArgs.get_frame() return value type replaced to IImage

The return type of the get_frame method for the EnumerableFrameArgs class was replaced to IImage from Bitmap. This is required as a part of the Modern API transition.

ICellFormat.transparency and ITableFormat.transparency properties added

New property transparency added to the ICellFormat and ITableFormat. It represents the transparency of the fill color.

Example:

import aspose.slides as slides

with slides.Presentation("pres.pptx") as presentation:
    table = presentation.slides[0].shapes[0]
    table.table_format.transparency = 0.5