تغييرات API العامة والتغييرات غير المتوافقة للخلف في Aspose.Slides ل .NET 16.1.0

تغييرات API العامة

تم إضافة خاصية RotationAngle إلى واجهات IChartTextBlockFormat و ITextFrameFormat

تم إضافة خاصية RotationAngle إلى الواجهات Aspose.Slides.Charts.IChartTextBlockFormat و Aspose.Slides.ITextFrameFormat. تحدد هذه الخاصية الدوران المخصص الذي يُطبق على النص داخل مربع الحدود.


 using (Presentation pres = new Presentation())

{

IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.ClusteredColumn, 50, 50, 500, 300);

IChartSeries series = chart.ChartData.Series[0];

series.Labels.DefaultDataLabelFormat.ShowValue = true;

series.Labels.DefaultDataLabelFormat.TextFormat.TextBlockFormat.RotationAngle = 65;

chart.HasTitle = true;

chart.ChartTitle.AddTextFrameForOverriding("Custom title").TextFrameFormat.RotationAngle = -30;

pres.Save("out.pptx", SaveFormat.Pptx);

}


تم نقل OdpException من Aspose.Slides.Odp إلى مساحة الاسم Aspose.Slides