Aspose.Slides for Java 14.10.0 的公共 API 和向后不兼容更改

公共 API 更改

com.aspose.slides.FieldType.getFooter() 方法已添加

getFooter() 方法返回页脚字段类型。它已被添加以实现创建此类型字段的可能性以及有效的演示文稿序列化。

元素 com.aspose.slides.ShapeElementFillSource.Own 已被删除

元素 ShapeElementFillSource.Own 因为重复而被删除。使用 ShapeElementFillSource.Shape 替代 ShapeElementFillSource.Own。

已添加图表数据点、类别删除的方法

以下方法允许从图表数据点集合中删除图表数据点:

IChartDataPointCollection.remove(IChartDataPoint) IChartDataPoint.remove()

以下方法允许从包含集合中删除图表类别:

IChartCategory.remove()


 Presentation pres = new Presentation();

IChart chart = pres.getSlides().get_Item(0).getShapes().addChart(ChartType.ClusteredColumn, 50, 50, 450, 400, true);

chart.getChartData().getCategories().get_Item(0).remove(); // 使用 ChartCategory.remove() 删除

chart.getChartData().getCategories().remove(chart.getChartData().getCategories().get_Item(0)); // 使用 ChartCategoryCollection.remove() 删除

for (IChartSeries ser : chart.getChartData().getSeries())

{

    ser.getDataPoints().get_Item(0).remove(); // 使用 ChartDataPoint.remove() 删除

    ser.getDataPoints().remove(ser.getDataPoints().get_Item(0)); // ChartDataPointCollection.remove()

}

pres.save("presentation.pptx", SaveFormat.Pptx);

过时的 Aspose.Slides.ParagraphFormat 方法已被删除

方法 getBulletChar()、getBulletColor()、getBulletColorFormat()、getBulletFont()、getBulletHeight()、getBulletType()、isBulletHardColor()、isBulletHardFont()、getNumberedBulletStartWith()、getNumberedBulletStyle() 及对应的 set 方法已被删除。它们很久以前就标记为过时。

无用和过时的构造函数已被删除

以下构造函数已被删除:

com.aspose.slides.AlphaBiLevel(float) com.aspose.slides.AlphaModulateFixed(float) com.aspose.slides.AlphaReplace(float) com.aspose.slides.BiLevel(float) com.aspose.slides.Blur(double, boolean) com.aspose.slides.HSL(float, float, float) com.aspose.slides.ImageTransformOperation(com.aspose.slides.ImageTransformOperationCollection) com.aspose.slides.Luminance(float, float) com.aspose.slides.Tint(float, float) com.aspose.slides.PortionFormat(com.aspose.slides.ParagraphFormat) com.aspose.slides.PortionFormat(com.aspose.slides.Portion) com.aspose.slides.PortionFormat(com.aspose.slides.PortionFormat)