Aspose.Slides for Android via Java 20.6 Release Notes
Contents
[
Hide
]
This page contains release notes for Aspose.Slides for Android via Java 20.6
Key | Summary | Category |
---|---|---|
SLIDESANDROID-240 | Use Aspose.Slides for Java 20.6 features | Enhancement |
Public API Changes
New methods setRecoverWorkbookFromChartCache and getRecoverWorkbookFromChartCache have been added to SpreadsheetOptions
New methods setRecoverWorkbookFromChartCache() and getRecoverWorkbookFromChartCache() have been added to SpreadsheetOptions. If the data source of the chart is an external workbook and it’s not available, it will be recovered from the chart cache.
LoadOptions lo = new LoadOptions();
lo.getSpreadsheetOptions().setRecoverWorkbookFromChartCache(true);
Presentation pres = new Presentation("Presentation.pptx", lo);
try {
IChart chart = (IChart)pres.getSlides().get_Item(0).getShapes().get_Item(0);
IChartDataWorkbook wb = chart.getChartData().getChartDataWorkbook();
...
} finally {
if (pres != null) pres.dispose();
}
iteratorJava() method has been added to IGenericCollection interface and several collection classes
iteratorJava() method has been added to IGenericCollection interface and following classes:
- AudioCollection
- BehaviorCollection
- BehaviorPropertyCollection
- CellCollection
- ChartCategoryCollection
- ChartCellCollection
- ChartDataPointCollection
- ChartSeriesCollection
- ColorOperationCollection
- ColumnCollection
- CommentAuthorCollection
- CommentCollection
- ControlCollection
- ControlPropertiesCollection
- CustomXmlPartCollection
- DataLabelCollection
- DigitalSignatureCollection
- EffectStyleCollection
- ExtraColorSchemeCollection
- FillFormatCollection
- FontFallBackRulesCollection
- FontSubstRuleCollection
- GradientStopCollection
- GradientStopCollectionEffectiveData
- ImageCollection
- ImageTransformOCollectionEffectiveData
- ImageTransformOperationCollection
- LayoutSlideCollection
- LineFormatCollection
- MasterSlideCollection
- MotionPath
- ParagraphCollection
- PieSplitCustomPointCollection
- PointCollection
- PortionCollection
- RowCollection
- SectionCollection
- SectionSlideCollection
- Sequence
- SequenceCollection
- ShapeCollection
- SlideCollection
- SmartArtNodeCollection
- SmartArtShapeCollection
- TabCollection
- TagCollection
- TextAnimationCollection
- TrendlineCollection
- VbaModuleCollection
- VbaReferenceCollection
- VideoCollection
This method allows to get an iterator that is fully complied with the Java Iterator logic.