Browse our Products

Aspose.Slides for Java 23.9 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-44012ODP Pie/Bubble charts supportEnhancementhttps://docs.aspose.com/slides/net/convert-odp-to-pptx/
SLIDESNET-44013ODP Net/Stock charts supportEnhancementhttps://docs.aspose.com/slides/net/convert-odp-to-pptx/
SLIDESNET-44099Getting the value from the Animate Text property of animation effectFeaturehttps://docs.aspose.com/slides/net/shape-animation/
SLIDESJAVA-39020Use Aspose.Slides for Net 23.9 featuresEnhancement
SLIDESJAVA-38613Text is not displayed in Notes when converting PPTX to PDFBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-pdf/
SLIDESJAVA-39249validateChartLayout method fails with ArgumentOutOfRangeExceptionBughttps://docs.aspose.com/slides/java/create-chart/
SLIDESJAVA-39279Loading the PPT file without license throws PptxExceptionBughttps://docs.aspose.com/slides/java/evaluate-aspose-slides/
SLIDESJAVA-39261PPTX to ODP conversion throws InvalidOperationExceptionBughttps://docs.aspose.com/slides/java/convert-openoffice-odp/
SLIDESJAVA-37635Pptx file not properly converted to HtmlBughttps://docs.aspose.com/slides/java/convert-powerpoint-to-html/

Public API Changes

Text Animation Effect - AnimateTextType enum has been added

The new AnimateTextType enum has been added and it represents the animate text type of an animation effect. It allows to set the following text animation types:

  • animate all text at once
  • animate text by word
  • animate text by letter

Example:

Presentation presentation = new Presentation("demo.pptx");
try {
    // Get the first effect of the first slide.
    IEffect firstSlideEffect = presentation.getSlides().get_Item(0).getTimeline().getMainSequence().get_Item(0);

    // Change the effect Animate text type to "By letter"
    firstSlideEffect.setAnimateTextType(AnimateTextType.ByLetter);
} finally {
    if (presentation != null) presentation.dispose();
}