Browse our Products

Aspose.Slides for Java 23.8 Release Notes

KeySummaryCategoryRelated Documentation
SLIDESNET-43744Slide Show / Set Up / Show Media Controls settingFeature
SLIDESNET-44070Loading corrupted presentation throws PptxReadExceptionEnhancementhttps://docs.aspose.com/slides/net/save-presentation/
SLIDESNET-44031Add an option to the ZipFile to read in recovery modeEnhancementhttps://docs.aspose.com/slides/net/open-presentation/
SLIDESJAVA-39016Use Aspose.Slides for Net 23.8 featuresEnhancement
SLIDESJAVA-39164Chart is lost when saving a presentation to PDF fileBughttps://docs.aspose.com/slides/java/powerpoint-charts
SLIDESJAVA-39233Memory leak while adding OLE object frame to a presentationBughttps://docs.aspose.com/slides/java/manage-ole/
SLIDESJAVA-39241Converting PPTX to PPT throws ArrayIndexOutOfBoundsExceptionBughttps://docs.aspose.com/slides/java/convert-pptx-to-ppt/
SLIDESJAVA-39200Chart labels are changed after conversion to PDFBughttps://docs.aspose.com/slides/java/chart-data-label/
SLIDESJAVA-38995License Parsing errorInvestigationhttps://docs.aspose.com/slides/java/licensing/#file

Public API Changes

ShowMediaControls property has been added for SlideShowSettings

The ShowMediaControls property was added for the SlideShowSettings class, which Represents the slide show settings for the presentation.

Example:

Presentation pres = new Presentation();
try {
    pres.getSlideShowSettings().setShowMediaControls(true);
} finally {
    if (pres != null) pres.dispose();
}