Aspose.Slides.NET 16.11.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 |
SLIDESNET-37863 - AnimationEffect.Disappear is unavailable in Aspose.Slides
SLIDESNET-36785 - Setting color for InvertIfNegitive value for chart series data
SLIDESNET-37351 - Implement rendering for distributed text alignment
SLIDESNET-33381 - Not able to get linked VTF path in pptx
SLIDESNET-38083 - Incorrect PDF is generated for presentation
SLIDESNET-38039 - Exception on loading presentation
SLIDESNET-38038 - Exception on saving presentation
SLIDESNET-38021 - Presentation is corrupted after resaved
SLIDESNET-38019 - Incorrect hyperlink action type in .ppt file
SLIDESNET-38018 - Exception on loading presentation
SLIDESNET-38017 - Ppt not converted to pdf correctly
SLIDESNET-38015 - When PPTX is converted to PDF, the values in chart are missing.
SLIDESNET-38009 - Image color changes after saving ppt
SLIDESNET-37993 - Font substitution does not work for bullets and symbols
SLIDESNET-37989 - Animation are changed after saving ppt
SLIDESNET-37987 - Issue while removing header footer
SLIDESNET-37978 - Hyperlink tool tip difference in .ppt and .pptx files
SLIDESNET-37970 - Convert stop after 21 slides
SLIDESNET-37969 - Exception on loading presentation
SLIDESNET-37962 - Pptx not rendered correctly after converting to png
SLIDESNET-37958 - Master slide name missing
SLIDESNET-37940 - Labels overlap in Y axis
SLIDESNET-37935 - Text is missing in box after converting pptx to png
SLIDESNET-37933 - Text is missing in boxes after converting pptx to png
SLIDESNET-37932 - Text missing when converting pptx to png
SLIDESNET-37930 - Position of graph lines is not correct in output HTML or image file
SLIDESNET-37912 - Black borders appears
SLIDESNET-37898 - Text distribution lost after converting Pptx to pdf
SLIDESNET-37883 - Unable to plot more than 700 points in the chart
SLIDESNET-37864 - Pptx does not render correctly
SLIDESNET-37833 - PPT not protected properly
SLIDESNET-37690 - PlotArea overlaps text behind the chart.
SLIDESNET-37683 - PDF notes are not rendering for ppt file
SLIDESNET-37668 - Font Bold and Italic property are not working properly
SLIDESNET-37584 - Memory leak in presentation loading and saving
SLIDESNET-37551 - Grayscale effect on image has disappeared after load and save a ppt
SLIDESNET-37534 - Chart unable to plot on Primary X-Axis and Secondary Y-Axis
SLIDESNET-37283 - Charts failed to render in generated thumbnails in Windows 8
SLIDESNET-37156 - Incorrect tiff generated from pptx
SLIDESNET-36993 - Incorrect Chart Titles in generated PDF
SLIDESNET-36982 - Line charts are changed after presentation load and save
SLIDESNET-36958 - Chart legends incorrect rendered in pdf
SLIDESNET-36845 - Incorrect Portion format on ppt
SLIDESNET-36619 - Chart axis are not showing properly in generated PDF
SLIDESNET-36208 - The text get changed when saving presentation
SLIDESNET-36165 - Gradient fill reversed after resaving presentation from PPT to PPTX
SLIDESNET-36141 - DateTimeInvalid Format exception thrown on saving presentation
SLIDESNET-36085 - Gradient is inverted on thumbnail and in PDF from ppt presentation
SLIDESNET-36077 - Improper rendering of presentation when exporting to SVG
SLIDESNET-35510 - Argument Exception thrown on accessing the presentation
SLIDESNET-35295 - Chart export disregards series number formatting
SLIDESNET-34999 - Presentation repair message on saving the presentation with cleared paragraphs from text frame
SLIDESNET-33382 - OleObjectFrame object representing VTF file reference contains empty strings in "LinkPathShort" and "LinkPathLong" properties.
Public API Changes
InvertedSolidFillColor property has been added
IColorFormat InvertedSolidFillColor property has been added to ChartSeries class and to IChartSeries interface.
It allows to specify inverted solid color for series. To apply this color setting, set series FillType format to FillType.Solid.
Color inverColor = Color.Red;
Color seriesColor;
using (Presentation pres = new Presentation())
{
IChart chart = p.Slides[0].Shapes.AddChart(ChartType.ClusteredColumn, 100, 100, 400, 300);
IChartDataWorkbook workBook = chart.ChartData.ChartDataWorkbook;
chart.ChartData.Series.Clear();
chart.ChartData.Categories.Clear();
// Adding new series
chart.ChartData.Series.Add(workBook.GetCell(0, 0, 1, "Series 1"), chart.Type);
// Adding new categories
chart.ChartData.Categories.Add(workBook.GetCell(0, 1, 0, "Category 1"));
chart.ChartData.Categories.Add(workBook.GetCell(0, 2, 0, "Category 2"));
chart.ChartData.Categories.Add(workBook.GetCell(0, 3, 0, "Category 3"));
// Take first chart series
IChartSeries series = chart.ChartData.Series[0];
// Now populating series data
series.DataPoints.AddDataPointForBarSeries(workBook.GetCell(0, 1, 1, -20));
series.DataPoints.AddDataPointForBarSeries(workBook.GetCell(0, 2, 1, 50));
series.DataPoints.AddDataPointForBarSeries(workBook.GetCell(0, 3, 1, -30));
seriesColor = series.GetAutomaticSeriesColor();
series.InvertIfNegative = true;
series.Format.Fill.FillType = FillType.Solid;
series.Format.Fill.SolidFillColor.Color = seriesColor;
series.InvertedSolidFillColor.Color = inverColor;
pres.Save(outPath, SaveFormat.Pptx);
}
Obsolete members related to PropertyType enum have been deleted
Aspose.Slides.Animation.BehaviorProperty.GetByType(Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.Add(Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.Contains(Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.IndexOf(Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.Insert(System.Int32,Aspose.Slides.Animation.PropertyType)
Aspose.Slides.Animation.BehaviorPropertyCollection.Remove(Aspose.Slides.Animation.PropertyType)
Obsolete enum Aspose.Slides.Animation.PropertyType has been deleted.
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 |