Browse our Products

Aspose.Slides for Node.js via Java 24.10 Release Notes

KeySummaryCategory
SLIDESNODEJS-30Use Aspose.Slides for Java 24.10 featuresEnhancement

Public API Changes

New Enum Members: EffectSubtype.SlideCenter and EffectSubtype.ObjectCenter Have Been Added

New members, SlideCenter and ObjectCenter, 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:

var presentation = new aspose.slides.Presentation("pres.pptx");
try {
    var effect = presentation.getSlides().get_Item(0).getTimeline().getMainSequence().get_Item(0);

    if (effect.getType() == aspose.slides.EffectType.FadedZoom)
    {
        console.log(effect.getType() + " - " + effect.getSubtype());
    }
} finally {
    if (presentation != null) presentation.dispose();
}