Aspose.Slides for Android via Java 23.8 Release Notes
This page contains release notes for Aspose.Slides for Android via Java 23.8
Key | Summary | Category |
---|---|---|
SLIDESANDROID-437 | Use Aspose.Slides for Java 23.8 features | Enhancement |
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();
}