Aspose.Slides.NET 17.2.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-38125 Check whether presentations master slides are identical SLIDESNET-33650 Identifying the merged cells in Table SLIDESNET-34143 Refactor charts implementation SLIDESNET-38316 Insufficient header length error SLIDESNET-38371 Unable to edit data in chart after just opening and saving presentation (without modification) SLIDESNET-38329 Exception on converting pptx to pdf SLIDESNET-38328 Presentation file not converted properly to pdf SLIDESNET-38325 Exception on loading presentation SLIDESNET-38323 Footer is changed after saving ppt SLIDESNET-38321 Cloning a chart object creates a corrupted chart SLIDESNET-38315 Ole frame un-editable when saving presentation SLIDESNET-38306 Problem while converting ppt to pdf SLIDESNET-38300 System.ArgumentException on saving PPTX to PDF SLIDESNET-38291 When PPT is loaded and saved, the date format is changed SLIDESNET-38288 After load and save of PPT file, the footer disappears. SLIDESNET-38287 Exception on saving ppt SLIDESNET-38281 Footer text color and font changed after saving SLIDESNET-38278 Exception on saving ppt SLIDESNET-38274 Pptx not properly converted to pdf SLIDESNET-38271 Hyperlink and tool tip text change for hyperlink on saving presentation SLIDESNET-38267 Bold effect not applied SLIDESNET-38264 Pptx not properly converted to pdf SLIDESNET-38250 ReadWorkbookStream method returns empty workbook SLIDESNET-38237 Exception on loading presentation SLIDESNET-38229 Hyperlink Value changed for portion text SLIDESNET-38228 Animation effect gets corrupt on changing paragraph text SLIDESNET-38221 Ppt changed after saving SLIDESNET-38212 External Hyperlink is not getting set for text SLIDESNET-38203 Vector images background changed SLIDESNET-38202 Ppt changed after saving SLIDESNET-38176 Hyperlink (URLs) with Unicode text becomes with duplicates characters SLIDESNET-38171 Font looks bold on rendering SLIDESNET-38152 Instead of some images "no image" placeholder rendered for x86 build SLIDESNET-38085 Incorrect link detection SLIDESNET-38075 Shaped removed after saving ppt SLIDESNET-36620 Argument exception on loading the presentation SLIDESNET-36373 Text color changed after saving presentation. SLIDESNET-36372 Protected view message thrown on opening saved presentation SLIDESNET-35825 Conversion to PPT fails with exception PPT presentation can't contains more than 8 placeholders in one slide. SLIDESNET-35824 Empty pages generated when converting ODP to PDF SLIDESNET-35587 Hyperlink to absolute file path doesn't work for PowerPoint 2007 SLIDESNET-35542 Category axis labels are missing or improperly rendered in generated PDF SLIDESNET-35489 Error on opening the generated PDF file from PPT file SLIDESNET-35179 StringIndexOutOfBoundsException on reading Hyperlink text SLIDESNET-35000 Improper gradient rendering in generated PDF SLIDESNET-33748 Font Rotation does not set the value for rotated font Public API Changes Equals method has been added to IBaseSlide interface and BaseSlide classMethod signature:bool Equals(IBaseSlide slide);It returns true for the slides / layout slides / master slides which identical by its structure and static content. Two slides are equal if all shapes, styles, texts, animation and other settings. etc. are equal. The comparison doesn't take into account unique identifier values, e.g. SlideId and dynamic content, e.g. current date value in Date Placeholder. Example code snippet: using(Presentation presentation1 = new Presentation(@"SomePresentation1.pptx")) using(Presentation presentation2 = new Presentation(@"SomePresentation2.pptx")) { for (int i = 0; i < presentation1.Masters.Count; i++) { for (int j = 0; j < presentation2.Masters.Count; j++) { if (presentation1.Masters[i].Equals(presentation2.Masters[j])) Console.WriteLine(string.Format("SomePresentation1 MasterSlide#{0} is equal to SomePresentation2 MasterSlide#{1}", i, j)); } } } IsMergedCell property has been added to ICell interface and Cell classICell. IsMergedCell property returns true if the cell is merged with any adjusted cell, false otherwise. It can be used to identify merged cells across the table. Code snippet for output all merged cells in a table: using(Presentation pres = new Presentation("SomePresentationWithTable.pptx")) { ITable table = pres.Slides[0].Shapes[0] as ITable; // assuming that Slide#0.Shape#0 is a table for (int i = 0; i < table.Rows.Count; i++) { for (int j = 0; j < table.Columns.Count; j++) { ICell currentCell = table.Rows[i][j]; if (currentCell.IsMergedCell) { Console.WriteLine(string.Format("Cell {0};{1} is a part of merged cell with RowSpan={2} and ColSpan={3} starting from Cell {4};{5}.", i, j, currentCell.RowSpan, currentCell.ColSpan, currentCell.FirstRowIndex, currentCell.FirstColumnIndex)); } } } }

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