Aspose.Slides.NET 16.9.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-36283 - Support for adding and removing custom XML parts in presentation using Aspose.Slides
SLIDESNET-34302 - Support for HandoutMaster in PPT
SLIDESNET-32049 - Setting chart data range using Aspose.Slides
SLIDESNET-37890 - Text is improperly rendered in generated thumbnail
SLIDESNET-37889 - Wrong line series labels in resaving pptx presentation
SLIDESNET-37827 - Parenthesis direction is changed after saving ppt
SLIDESNET-37825 - Slides Bullets are changed after saving ppt
SLIDESNET-37824 - Slide Background changes after saving ppt
SLIDESNET-37820 - Punctuation marks are misplaced after loading and saving a ppt
SLIDESNET-37819 - Slide shadow gone after saving ppt
SLIDESNET-37818 - Angel for slides is changed after saving ppt
SLIDESNET-37817 - Background color Changed after saving ppt
SLIDESNET-37812 - Background color blending alignments changing after transforming to PDF
SLIDESNET-37803 - Slide color changes while converting pptx to svg
SLIDESNET-37802 - Generating slide thumbnail process hangs on slide 35
SLIDESNET-37800 - Setting Embedded Aspose.Slides license fail when using Application through Crypto Obfuscator
SLIDESNET-37797 - Background is improperly rendered in generated PDF and thumbnails
SLIDESNET-37792 - Background Color changes after saving ppt
SLIDESNET-37790 - Notes Page view corrupted after saving ppt
SLIDESNET-37763 - Legend text partially missing in the generated thumbnail
SLIDESNET-37758 - Text has bold and italic styles after exporting presentation to ppt
SLIDESNET-37665 - PPT to PDF conversion content are missing
SLIDESNET-37568 - Issue while reading slide notes
SLIDESNET-37461 - Font changed to Wingdings on ppt load and save
SLIDESNET-37447 - MasterNotesSlide returns null for ppt files
SLIDESNET-37446 - MasterNotesSlide returns null for ppt files
SLIDESNET-37392 - Line chart is incorrectly rendered in generated thumbnail of slide with chart
SLIDESNET-37360 - Different shape width in generated pdf
SLIDESNET-37356 - Incorrect text wrap in generated pdf
SLIDESNET-37348 - ArgumentException while loading a ppt
SLIDESNET-37344 - Text formatting lost when saving PPT
SLIDESNET-37121 - Gradient and text alignment changed on presentation load and save
SLIDESNET-36676 - Background changed on presentation load and save
SLIDESNET-36633 - Slides notes are displayed in top left on saving presentation
SLIDESNET-35728 - Master notes slide returns null
SLIDESNET-34017 - Series label count returns 0 for already added labels to show series values
SLIDESNET-33920 - Chart.CategoryAxis return null for ScatterChart
Public API Changes
Interface ICustomXmlPart and class CustomXmlPart have been added
Interface Aspose.Slides.ICustomXmlPart and related class Aspose.Slides.CustomXmlPart have been added. It represents one custom xml part and provides methods to get or set xml content, used schemas and id.
Interface ICustomXmlPartCollection and class CustomXmlPartCollection have been added
Interface Aspose.Slides.ICustomXmlPartCollection and related class Aspose.Slides.CustomXmlPartCollection have been added. It represents a collection of custom xml parts and provides methods to get, create and delete items.
Property EffectFormat has been added to IBackground and Background
Property EffectFormat has been added to interface Aspose.Slides.IBackground and class Aspose.Slides.Background for specifying effects of slide background.
Code snippet:
using (Presentation pres = new Presentation())
{
IBackground background = pres.Slides[0].Background;
background.Type = BackgroundType.OwnBackground;
// Set slide background to Solid color
background.FillFormat.FillType = FillType.Solid;
background.FillFormat.SolidFillColor.Color = Color.Cornsilk;
// Add shadow to slide
background.EffectFormat.EnableOuterShadowEffect();
IOuterShadow shadow = background.EffectFormat.OuterShadowEffect;
shadow.ShadowColor.Color = Color.Chocolate;
shadow.Distance = 15.0;
shadow.Direction = 45f;
pres.Save(path + "out.pptx", SaveFormat.Pptx);
}
Property ICustomData.CustomXmlParts has been added
Property Aspose.Slides.ICustomData.CustomXmlParts has been added. It represents a collection of custom xml parts associated with the corresponding ICustomData instance.
using(Presentation pres = new Presentation())
{
pres.Slides[0].CustomData.CustomXmlParts.Add(GetXmlStringSample("John Doe")); //add new custom xml to slide custom data
pres.Save(@"out.pptx", SaveFormat.Pptx);
}
private static string GetXmlStringSample(string name)
{
string xmlString =
"<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
"<employees xmlns=\"http://schemas.test.com/sample\">" +
"<employee>" +
"<name>" + name + "</name>" +
"</employee>" +
"</employees>";
return xmlString;
}
Property IPresentation.AllCustomXmlParts has been added
Property Aspose.Slides.IPresentation.AllCustomXmlParts has been added. It returns all custom xml parts contained in the presentation.
//Sample for clear all custom xml parts from presentation
using (Presentation pres = new Presentation("PresentationWithCustomXml.pptx"))
{
foreach (ICustomXmlPart item in pres.AllCustomXmlParts)
{
item.Remove();
}
pres.Save("out.pptx", SaveFormat.Pptx);
}
SetRange method has been added to interface IChartData and class ChartData
Method SetRange has been added to interface Aspose.Slides.Charts.IChartData and class Aspose.Slides.Charts.ChartData. It allows to set data range with cells formula. Series and categories will be updated based on new data range.
using (Presentation pres = new Presentation())
{
IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Line, 10, 10, 400, 300);
chart.ChartData.SetRange("Sheet1!A1:B4");
pres.Save("output.pptx", Export.SaveFormat.Pptx);
}
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
25.9.0 | 0 | 09/03/2025 |
25.8.0 | 6 | 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 |