API Publik dan Perubahan Tidak Kompatibel Mundur di Aspose.Slides untuk Java 15.11.0
Perubahan API Publik
Metode yang sudah usang dalam kelas com.aspose.slides.DataLabelCollection telah dihapus
Metode yang sudah usang dalam kelas com.aspose.slides.DataLabelCollection telah dihapus:
DataLabelCollection.getNumberFormat() DataLabelCollection.setNumberFormat(String value) DataLabelCollection.getLinkedSource() DataLabelCollection.setLinkedSource(boolean value) DataLabelCollection.getDelete() DataLabelCollection.setDelete(boolean value) DataLabelCollection.getFormat() DataLabelCollection.setFormat(Format value) DataLabelCollection.getPosition() DataLabelCollection.setPosition(int value) DataLabelCollection.getSeparator() DataLabelCollection.setSeparator(String value) DataLabelCollection.getShowLegendKey() DataLabelCollection.setShowLegendKey(boolean value) DataLabelCollection.getShowLeaderLines() DataLabelCollection.setShowLeaderLines(boolean value) DataLabelCollection.getShowCategoryName() DataLabelCollection.setShowCategoryName(boolean value) DataLabelCollection.getShowValue() DataLabelCollection.setShowValue(boolean value) DataLabelCollection.getShowPercentage() DataLabelCollection.setShowPercentage(boolean value) DataLabelCollection.getShowSeriesName() DataLabelCollection.setShowSeriesName(boolean value) DataLabelCollection.getShowBubbleSize() DataLabelCollection.setShowBubbleSize(boolean value)
Metode baru getFirstSlideNumber() dan setFirstSlideNumber() telah ditambahkan ke kelas Presentation
Metode baru getFirstSlideNumber() dan setFirstSlideNumber() memungkinkan untuk mengambil atau mengatur nomor slide pertama dalam presentasi. Ketika nilai nomor slide pertama baru ditentukan, semua nomor slide akan dihitung ulang.
Presentation pres = new Presentation(path);
int firstSlideNumber = pres.getFirstSlideNumber();
pres.setFirstSlideNumber(10);
pres.save(newPath, SaveFormat.Pptx);