Aspose.Slides.NET 17.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

SLIDESNET-38621 - Render comments when saving as image, PDF or HTML SLIDESNET-38044 - Preserving original date and time SLIDESNET-26375 - Support for creating presentation sections in Aspose.Slides SLIDESNET-33584 - BorderDiagonalDown BorderDiagonalUp feature support for PPT cell SLIDESNET-38500 - "Allow Latin text to wrap in the middle of a word" ISSUE SLIDESNET-38724 - Right-To-Left\Left-To-Right issues SLIDESNET-38929 - When PPTX is converted to PDF, the graphs are missing SLIDESNET-38942 - Some tables in the presentation rendered incorrectly SLIDESNET-38949 - Bullet numbering did not reset for text in exported PDF SLIDESNET-38488 - The type 'HttpResponse' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' SLIDESNET-38574 - Exception when instantiating presentation with signed file SLIDESNET-36991 - Presentation protection does not work if saved as PPT SLIDESNET-37993 - Font substution does not work for bullets and symbols SLIDESNET-38931 - Application hangs when converting a slide to SVG SLIDESNET-14306 - Negitive array size exception while getting slide Thumbnail and Thumbnail rendering issue SLIDESNET-17254 - Bullet/Text offset lost on save in Office XP SLIDESNET-23831 - PptReadException on reading presentation SLIDESNET-30590 - Shape.TextFrame returns null for Title shape SLIDESNET-33837 - Cannot access the presentation properties for Aspose.Slides unprotected presentation using Filtdump.exe SLIDESNET-35152 - ArgumentException: Parameter is not valid exception is thrown when adding the notes to PPT and saving as Notes TIFF SLIDESNET-35170 - Ability to convert read-only PPT to PDF no longer works SLIDESNET-35231 - Comments Count issue for PPT file SLIDESNET-35406 - Slide comments are not read for PPT files SLIDESNET-35601 - Text is missing in the generated PPT file SLIDESNET-36040 - NullReference exception on opening word document SLIDESNET-36041 - Wrong exception message is thrown on loading password protected presentaiton without password SLIDESNET-36228 - Text is improperly rendered in generated PDF SLIDESNET-36677 - Symbols orientation changed on presentation load and saved SLIDESNET-36681 - Applying password to .pptx removes custom properties SLIDESNET-37173 - Zoom level changed, Notes box appeared on load and save SLIDESNET-38400 - Pptm to svg not properly converted SLIDESNET-38423 - Hyperlink changes upon text changes SLIDESNET-38446 - Embedded excel Ole object once extracted corrupts the excel file SLIDESNET-38503 - Unsupported format exception on load the excel workbook from OLE Data SLIDESNET-38504 - Ppt changed after saving SLIDESNET-38506 - Problem with GetEffectsByShape SLIDESNET-38515 - Text is improperly rendered in generated HTML SLIDESNET-38581 - InvalidCastException on converting odp to pdf SLIDESNET-38582 - LastSavedTime on .ppt files doesn't work SLIDESNET-38585 - Presentation date property converted by default SLIDESNET-38600 - Bullet numbering gets changed in generated HTML SLIDESNET-38610 - Text strings are improperly aligned in saved presentation SLIDESNET-38611 - Text position getting changed in saved PPT SLIDESNET-38620 - Ppt changed after saving SLIDESNET-38725 - Actions on animations are lost on saving presentation SLIDESNET-38902 - Invert if negative property in PPTX being set SLIDESNET-38919 - Exception on loading presentation SLIDESNET-38930 - Text overlapping in generated image result SLIDESNET-38933 - Hyperlink is wrongly associated with text in exported HTML SLIDESNET-38935 - Drop Shadow effects are lost when saving presentation SLIDESNET-38936 - Text formatting changes after cloning SLIDESNET-38938 - Bar chart not properly rendered after cloning SLIDESNET-38944 - Chart styles are not getting applied on saved presentation SLIDESNET-39016 - NullReference exception is thrown on WriteWorkbookStream for chart Public API Changes IncludeComments property has been added to classes PdfOptions, SwfOptions, TiffOptions and HtmlOptions Property IncludeComments has been added to IHtmlOptions, IPdfOption, ISwfOptions, ITiffOptions interfaces and HtmlOptions, PdfOptions, SwfOptions, TiffOptions classes respectively. This property specifies whether the exported document should include additional pages with comments or not. Default value is "false". Code example: using (Presentation pres = new Presentation("Presentation.pptx")) { //Instantiate the PdfOptions class PdfOptions pdfOptions = new PdfOptions(); //Specify that the generated document should include comment pages pdfOptions.IncludeComments = true; //Save the presentation to PDF with specified options pres.Save("Presentation.pdf", SaveFormat.Pdf, pdfOptions); } ISectionCollection interface and SectionCollection class have been added. ISectionCollection and SectionCollection represent a collection of sections. Methods and properties: ISection thisint index - gets the element at the specified index. ISection AddSection(string name, ISlide startedFromSlide) - adds a new section started form specific slide. ISection AddEmptySection(string name, int index) - adds an empty section to the specified position of the collection. RemoveSectionWithSlides(ISection section) - removes section and slides contained in the section. RemoveSection(ISection section) - removes section. Slides contained in the section will be merged into previous section. ReorderSectionWithSlides(ISection section, int index) - moves section and its slides from the collection to the specified position. ISection AppendEmptySection(string name) - adds an empty section to the end of the collection. int IndexOf(ISection section) - returns an index of the specified section in the collection. Clear() - removes all sections from the collection. Example: ISection section = pres.Sections[2]; pres.Sections.ReorderSectionWithSlides(section, 0); pres.Sections.RemoveSectionWithSlides(pres.Sections[0]); pres.Sections.AppendEmptySection("Last empty section"); pres.Sections.AddSection("First empty", 3); ISection interface and Section class have been added ISection interface and Section class represent section of slides. Methods and properties: string Name - returns the name of the section. ISlide StartedFromSlide - returns first slide of the section. ISectionSlideCollection GetSlidesListOfSection() - returns a list of slides in the section. Example: pres.Sections.AddSection("Section 1", pres.Slides[0]); pres.Sections[0].Name = "New section name"; ISectionSlideCollection slidesInSection = pres.Sections[0].GetSlidesListOfSection(); ISectionSlideCollection interface and SectionSlideCollection class have been added ISectionSlideCollection and SectionSlideCollection represents a collection of a slides in the section. Example: ISectionSlideCollection slidesInSection = pres.Sections[0].GetSlidesListOfSection(); foreach (ISlide slide in slidesInSection) { // do something with slide } Properties IPresentation.Sections, Presentation.Sections have been added Properties IPresentation.Sections and Presentation.Sections return ISectionCollection instance (list of all slides sections that are defined in the presentation). IPresentation pres = new Presentaton(); pres.Sections.AddSection("Section 1", pres.Slides[0]); int n = pres.Sections.Count;

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