Browse our Products

Aspose.Slides for Python via .NET 24.10 Release Notes

New Features and Enhancements

KeySummaryCategoryRelated Documentation
SLIDESNET-43619Getting the vanishing point option of Zoom animationFeature

Other Improvements and Changes

KeySummaryCategoryRelated Documentation
SLIDESPYNET-182Use Aspose.Slides for Net 24.10 featuresEnhancementhttps://releases.aspose.com/slides/net/release-notes/2024/aspose-slides-for-net-24-10-release-notes/
SLIDESPYNET-152Failed to change the width and height of tablesBug

Public API Changes

New Enum Members: EffectSubtype.SLIDE_CENTER and EffectSubtype.OBJECT_CENTER Have Been Added

New members, SLIDE_CENTER and OBJECT_CENTER, have been added to the EffectSubtype enum. These effect subtypes are used with the FadedZoom effect type. The following example demonstrates how these members can be used:

import aspose.slides as slides

with slides.Presentation("pres.pptx") as presentation:
    effect = presentation.slides[0].timeline.main_sequence[0]
	if effect.type == slides.EffectType.FADED_ZOOM:
	    print(f"{effect.type} - {effect.subtype}")