Aspose.Slides.NET 14.6.0

Aspose.Slides is a PowerPoint management library for working with Microsoft PowerPoint files without using Microsoft PowerPoint. It allows developers to work with PPT, PPS, POT, PPTX, PPSX, POTX and ODP files on ASP.NET web applications, web services and Windows applications.

Showing the top 20 packages that depend on Aspose.Slides.NET.

Packages Downloads
Finsa.CaravanCore
Package Description
25
Finsa.CaravanCore
Package Description
26
Finsa.CaravanCore
Package Description
27
Finsa.CaravanCore
Package Description
30
Finsa.CaravanCore
Package Description
35
Finsa.CaravanCore
Package Description
38
Finsa.CaravanCore
Package Description
57
Finsa.CaravanCore
Package Description
69
Finsa.CaravanCore
Package Description
78
Finsa.CaravanCore
Package Description
91
Finsa.CaravanCore
Package Description
103
Finsa.CaravanCore
Package Description
111
Finsa.CaravanCore
Package Description
158
Finsa.CaravanCore
Package Description
182
Finsa.CaravanCore
Package Description
293
Finsa.CaravanCore
Package Description
388
Finsa.CaravanCore
Package Description
478
Finsa.CaravanCore
Package Description
1,263
Finsa.CaravanCore
Package Description
2,168

Aspose.Slides for .NET 14.6.0 Release Notes We are pleased to announce the release of Aspose.Slides for .NET 14.6.0. This release includes new functionality and bug fixes. Using Aspose.Slides for .NET you can work with PPT, PPTX, OpenDocument, and other formats in your applications. You can also view, generate, modify, convert, render and print presentations all without using Microsoft PowerPoint. Visit the documentation to learn how to get started with Aspose.Slides for .NET. Note this download contains a fully working version of the product, however without a license set it will run in evaluation mode. To test Aspose.Slides without these evaluation limitations you can request a free 30-day temporary license. The following is a list of changes in this version of Aspose.Slides. Major Features (SLIDESNET-27375) - Add shapes cloning feature Minor Features (SLIDESNET-34369) - Support for removing LayoutSlideEx from MasterSlideEx (SLIDESNET-35502) - Support to determine if ODP presentations are password protected without loading them (SLIDESNET-35496) - Setting slide view type for presentation (SLIDESNET-34900) - Support Error Bars in Charts Other Improvements and Changes Bug Fixes (SLIDESNET-35556) - OutOfMemory Exception on generating the PDF (SLIDESNET-35553) - Improperly axis labels rendering in PDF (SLIDESNET-35552) - Downbars are missing in the chart when converting PPTX to PDF (SLIDESNET-35551) - Chart missing when converting PPTX to PDF (SLIDESNET-35508) - PictureFrame with external linked image doesn't preserve this link when presentation has been resaved (SLIDESNET-35497) - FormatException: Input string was not in a correct format when adding (SLIDESNET-35491) - PPTX to PDF conversion. Error on Opening the PDF file (SLIDESNET-35462) - Exception on PPTX presentation opening (SLIDESNET-35425) - Table Formatting getting lost in PPTX to PDF conversion (SLIDESNET-35363) - PPTX to BMP Conversion: SmartArt shows wrong text after conversion (SLIDESNET-35333) - Portion text contain paragraph break character for an empty paragraph (SLIDESNET-35300) - Out of Memory Exception is thrown while saving the PPS to PDF file (SLIDESNET-35289) - Dotted line missing when converting PPTX to PDF (SLIDESNET-35035) - PPT to XPS: The heading position is not fine in XPS (SLIDESNET-33842) - Hyperlinks are lost on exporting PPT to PDF (SLIDESNET-33284) - SmartArt rendering is missing in exported PDF Public API Changes Interface Aspose.Slides.Charts.IErrorBarsFormat has been added Represents error bars of chart series. In case of custom value type to specify value use ErrorBarCustomValues property of specific data point in DataPoins collection of series. using (Presentation pres = new Presentation()) { IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Bubble, 50, 50, 400, 300, true); IErrorBarsFormat errBarX = chart.ChartData.Series[0].ErrorBarsXFormat; IErrorBarsFormat errBarY = chart.ChartData.Series[0].ErrorBarsYFormat; errBarX.IsVisible = true; errBarY.IsVisible = true; errBarX.ValueType = ErrorBarValueType.Fixed; errBarX.Value = 0.1f; errBarY.ValueType = ErrorBarValueType.Percentage; errBarY.Value = 5; errBarX.Type = ErrorBarType.Plus; errBarY.Format.Line.Width = 2; errBarX.HasEndCap = true; pres.Save("ErrorBars.pptx", SaveFormat.Pptx); } Interface Aspose.Slides.Charts.IErrorBarsCustomValues has been added In case when IErrorBarsFormat.ValueType property is equal Custom to specify value use ErrorBarCustomValues property of specific data point in DataPoints collection of series. using (Presentation pres = new Presentation()) { IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Bubble, 50, 50, 400, 300, true); IChartSeries series = chart.ChartData.Series[0]; IErrorBarsFormat errBarX = series.ErrorBarsXFormat; IErrorBarsFormat errBarY = series.ErrorBarsYFormat; errBarX.IsVisible = true; errBarY.IsVisible = true; errBarX.ValueType = ErrorBarValueType.Custom; errBarY.ValueType = ErrorBarValueType.Custom; IChartDataPointCollection points = series.DataPoints; points.DataSourceTypeForErrorBarsCustomValues.DataSourceTypeForXPlusValues = DataSourceType.DoubleLiterals; points.DataSourceTypeForErrorBarsCustomValues.DataSourceTypeForXMinusValues = DataSourceType.DoubleLiterals; points.DataSourceTypeForErrorBarsCustomValues.DataSourceTypeForYPlusValues = DataSourceType.DoubleLiterals; points.DataSourceTypeForErrorBarsCustomValues.DataSourceTypeForYMinusValues = DataSourceType.DoubleLiterals; for (int i = 0; i < points.Count; i++) { points[i].ErrorBarsCustomValues.XMinus.AsLiteralDouble = i + 1; points[i].ErrorBarsCustomValues.XPlus.AsLiteralDouble = i + 1; points[i].ErrorBarsCustomValues.YMinus.AsLiteralDouble = i + 1; points[i].ErrorBarsCustomValues.YPlus.AsLiteralDouble = i + 1; } pres.Save("ErrorBarsCustomValues", SaveFormat.Pptx); } Interface Aspose.Slides.Charts.IDataSourceTypeForErrorBarsCustomValues has been added Specifies types of values in ChartDataPoint.ErrorBarsCustomValues properties list. using (Presentation pres = new Presentation()) { IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Bubble, 50, 50, 400, 300, true); IChartSeries series = chart.ChartData.Series[0]; IErrorBarsFormat errBarX = series.ErrorBarsXFormat; IErrorBarsFormat errBarY = series.ErrorBarsYFormat; errBarX.IsVisible = true; errBarY.IsVisible = true; errBarX.ValueType = ErrorBarValueType.Custom; errBarY.ValueType = ErrorBarValueType.Custom; IChartDataPointCollection points = series.DataPoints; points.DataSourceTypeForErrorBarsCustomValues.DataSourceTypeForXPlusValues = DataSourceType.DoubleLiterals; points.DataSourceTypeForErrorBarsCustomValues.DataSourceTypeForXMinusValues = DataSourceType.DoubleLiterals; points.DataSourceTypeForErrorBarsCustomValues.DataSourceTypeForYPlusValues = DataSourceType.DoubleLiterals; points.DataSourceTypeForErrorBarsCustomValues.DataSourceTypeForYMinusValues = DataSourceType.DoubleLiterals; for (int i = 0; i < points.Count; i++) { points[i].ErrorBarsCustomValues.XMinus.AsLiteralDouble = i + 1; points[i].ErrorBarsCustomValues.XPlus.AsLiteralDouble = i + 1; points[i].ErrorBarsCustomValues.YMinus.AsLiteralDouble = i + 1; points[i].ErrorBarsCustomValues.YPlus.AsLiteralDouble = i + 1; } pres.Save("ErrorBarsCustomValues", SaveFormat.Pptx); } Aspose.Slides.IShapeCollection.AddClone(...), .InsertClone(...) methods had been added The methods Aspose.Slides.IShapeCollection.AddClone(IShape sourceShape) Aspose.Slides.IShapeCollection.AddClone(IShape sourceShape, float x, float y) Aspose.Slides.IShapeCollection.AddClone(IShape sourceShape, float x, float y, float width, float height) Aspose.Slides.IShapeCollection.InsertClone(int index, IShape sourceShape) Aspose.Slides.IShapeCollection.InsertClone(int index, IShape sourceShape, float x, float y) Aspose.Slides.IShapeCollection.InsertClone(int index, IShape sourceShape, float x, float y, float width, float height) adds/inserts a copy of a specified shape into the collection. Example of using: using (Presentation srcPres = new Presentation(dataPath_ShapeCloning + "Source Frame.pptx")) { IShapeCollection sourceShapes = srcPres.Slides[0].Shapes; ILayoutSlide blankLayout = srcPres.Masters[0].LayoutSlides.GetByType(SlideLayoutType.Blank); ISlide destSlide = srcPres.Slides.AddEmptySlide(blankLayout); IShapeCollection destShapes = destSlide.Shapes; destShapes.AddClone(sourceShapes[1], 50, 150 + sourceShapes[0].Height); destShapes.AddClone(sourceShapes[2]); destShapes.AddClone(sourceShapes[3], 50, 200, 50, 50); destShapes.AddClone(sourceShapes[4]); destShapes.AddClone(sourceShapes[5], 300, 300, 50, 200); destShapes.InsertClone(0, sourceShapes[0], 50, 150); } Added ViewType enum, IViewProperties interface, ViewProperties class and IPresentation.ViewProperties property IPresentation.ViewProperty allows changing presentation view type and notes visibility when a presentation is opened in PowerPoint. using(Presentation p = new Presentation()) { p.ViewProperties.LastView = ViewType.SlideMasterView; }

This package has no dependencies.

Version Downloads Last updated
25.9.0 0 09/03/2025
25.8.0 5 08/08/2025
25.7.0 4 07/02/2025
25.6.0 7 06/14/2025
25.5.0 16 05/19/2025
25.4.0 11 04/23/2025
25.3.0 16 03/07/2025
25.2.0 12 02/12/2025
25.1.0 14 01/17/2025
24.12.0 15 12/10/2024
24.11.0 16 11/14/2024
24.10.0 13 10/09/2024
24.9.0 13 09/12/2024
24.8.0 16 08/05/2024
24.7.0 14 07/18/2024
24.6.0 16 06/17/2024
24.5.0 20 05/12/2024
24.4.0 18 04/18/2024
24.3.0 20 03/16/2024
24.2.0 23 03/10/2024
24.1.0 24 02/08/2024
23.12.0 22 02/08/2024
23.11.0 21 02/08/2024
23.10.0 20 02/08/2024
23.9.0 19 02/08/2024
23.8.0 20 02/08/2024
23.7.0 19 02/08/2024
23.6.0 21 02/08/2024
23.5.0 18 02/08/2024
23.4.0 22 02/08/2024
23.3.1 18 02/08/2024
23.2.0 23 02/08/2024
23.1.0 20 02/08/2024
22.12.0 21 02/08/2024
22.11.0 22 02/08/2024
22.10.0 24 02/08/2024
22.9.0 20 02/08/2024
22.8.0 20 09/08/2022
22.7.0 39 08/30/2022
22.6.0 25 02/08/2024
22.5.0 22 02/08/2024
22.4.0 19 02/08/2024
22.3.0 19 02/08/2024
22.2.0 424 02/18/2022
22.1.0 19 02/08/2024
21.12.0 19 02/08/2024
21.11.0 135 12/07/2021
21.10.0 29 11/09/2021
21.9.0 312 10/01/2021
21.8.0 816 09/10/2021
21.7.0 321 07/15/2021
21.6.0 22 06/17/2021
21.5.0 523 05/18/2021
21.4.0 242 04/18/2021
21.3.0 1,722 03/30/2021
21.2.0 22 02/08/2024
21.1.0 21 02/08/2024
20.12.0 25 02/08/2024
20.11.1 20 02/08/2024
20.11.0 18 02/08/2024
20.10.0 21 02/08/2024
20.9.0 18 02/08/2024
20.8.0 20 02/08/2024
20.7.0 22 02/08/2024
20.6.0 22 02/08/2024
20.5.0 20 02/08/2024
20.4.0 21 02/08/2024
20.3.0 22 02/08/2024
20.2.0 24 02/08/2024
20.1.0 21 02/08/2024
19.12.0 19 02/08/2024
19.11.0 22 02/08/2024
19.10.0 19 02/08/2024
19.9.0 23 02/08/2024
19.8.0 20 02/08/2024
19.7.0 21 02/08/2024
19.6.0 19 02/08/2024
19.5.0 20 02/08/2024
19.4.0 21 02/08/2024
19.3.0 22 02/08/2024
19.2.0 22 02/08/2024
19.1.0 22 02/08/2024
18.12.0 21 02/08/2024
18.11.0 21 02/08/2024
18.10.0 24 02/08/2024
18.9.0 19 02/08/2024
18.8.0 20 02/08/2024
18.7.0 20 02/08/2024
18.6.0 21 02/08/2024
18.5.0 19 02/08/2024
18.4.0 20 02/08/2024
18.3.0 20 02/08/2024
18.2.1 20 02/08/2024
18.2.0 24 02/08/2024
18.1.0 21 02/08/2024
17.12.1 18 02/08/2024
17.12.0 18 02/08/2024
17.11.0 21 02/08/2024
17.10.0 23 02/08/2024
17.9.1 23 02/08/2024
17.9.0 20 02/08/2024
17.8.0 22 02/08/2024
17.7.0 20 02/08/2024
17.6.0 22 02/08/2024
17.5.0 19 02/08/2024
17.4.0 21 02/08/2024
17.3.0 18 02/08/2024
17.2.0 21 02/08/2024
17.1.0 19 02/08/2024
16.12.1 21 02/08/2024
16.12.0 23 02/08/2024
16.11.0 19 02/08/2024
16.10.0 19 02/08/2024
16.9.0 21 02/08/2024
16.8.0 19 02/08/2024
16.7.0 21 03/10/2024
16.6.0 22 02/08/2024
16.5.0 21 02/08/2024
16.4.0 22 02/08/2024
16.3.0 20 02/08/2024
16.2.0 24 02/08/2024
16.1.0 19 02/08/2024
15.11.0 21 02/08/2024
15.10.0 25 02/08/2024
15.9.0 22 02/08/2024
15.8.1 23 02/08/2024
15.8.0 22 02/08/2024
15.7.0 24 02/08/2024
15.6.0 20 02/08/2024
15.5.0 23 02/08/2024
15.4.0 23 02/08/2024
15.3.1 21 02/08/2024
15.3.0 22 02/08/2024
15.2.0 20 02/08/2024
15.1.0 20 02/08/2024
14.10.0 20 02/08/2024
14.9.0 23 02/08/2024
14.8.1 18 02/08/2024
14.8.0 21 02/08/2024
14.7.0 23 02/08/2024
14.6.0 21 02/08/2024
14.5.0 20 02/08/2024
14.4.0 22 02/08/2024
14.3.0 23 02/08/2024
14.2.0 26 02/08/2024
14.1.2 38 02/08/2024
14.1.1 25 02/08/2024
14.1.0.2 20 02/08/2024
13.12.0 22 02/08/2024
8.4.2 23 02/08/2024
8.4.1 21 02/08/2024
8.4.0 21 02/08/2024
8.3.0.1 19 02/08/2024
8.2.0 35 02/08/2024
8.1.0 22 02/08/2024
8.0.0 19 02/08/2024
7.9.0 19 02/08/2024
7.8.0 19 02/08/2024
7.7.0 38 02/08/2024
7.6.0 22 02/08/2024
7.5.0 21 02/08/2024
7.4.0 21 02/08/2024
7.3.0 20 02/08/2024
7.2.0 20 02/08/2024
7.1.0 23 02/08/2024
7.0.0 22 02/08/2024
6.9.0 23 02/08/2024
6.8.0 25 02/08/2024
6.7.0 21 02/08/2024
6.6.0 20 02/08/2024
6.5.0 20 02/08/2024
6.4.0 18 02/08/2024
6.3.0 20 02/08/2024
6.2.0 19 02/08/2024
6.1.0 23 02/08/2024
6.0.0 19 02/08/2024
5.9.0.1 21 02/08/2024
5.9.0 22 02/08/2024