Browse our Products
Aspose.Slides for Node.js via Java 24.10 Release Notes
This page contains release notes for Aspose.Slides for Node.js via Java
Key | Summary | Category |
---|---|---|
SLIDESNODEJS-30 | Use Aspose.Slides for Java 24.10 features | Enhancement |
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();
}