تغييرات API العامة والتغييرات غير المتوافقة للخلف في Aspose.Slides ل .NET 16.1.0
Contents
[
Hide
]
هذه الصفحة تسرد جميع الفئات والطرق والخصائص وما إلى ذلك التي تم إضافتها أو إزالتها، والتغييرات الأخرى التي تم تقديمها مع Aspose.Slides for .NET 16.1.0 API.
تغييرات 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);
}