Skip to content

Commit 3ac53ed

Browse files
Merge pull request #1427 from syncfusion-content/980386-updated-nuget-version-powerpoint
Upgraded the NuGet version to 31.1.17 for Presentation Performance metrics
2 parents e96bbd0 + 45046c6 commit 3ac53ed

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ control: Presentation
66
documentation: UG
77
---
88

9-
# PowerPoint to image performance benchmarks using .NET PowerPoint Library
9+
# PowerPoint to image performance metrics in .NET PowerPoint Library
1010

1111
The Syncfusion<sup>&reg;</sup> .NET PowerPoint library (Presentation) enables seamless integration with PowerPoint files, offering robust features for handling presentations in various formats. This performance benchmark report highlights the speed and efficiency of PowerPoint to image conversion, demonstrating how our library performs in real-world scenarios.
1212

@@ -18,7 +18,7 @@ The following system configurations were used for benchmarking:
1818
* **Processor:** 11th Gen Intel(R) Core(TM)
1919
* **RAM:** 16GB
2020
* **.NET Version:** .NET 8.0
21-
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.PresentationRenderer.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/30.1.37)
21+
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.PresentationRenderer.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/31.1.17)
2222

2323
## PowerPoint to image conversion
2424

Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Performance-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The following system configurations were used for benchmarking:
1818
* **Processor:** 11th Gen Intel(R) Core(TM)
1919
* **RAM:** 16GB
2020
* **.NET Version:** .NET 8.0
21-
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.PresentationRenderer.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/30.1.37)
21+
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.PresentationRenderer.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/31.1.17)
2222

2323
## PowerPoint to PDF conversion
2424

Document-Processing/PowerPoint/PowerPoint-Library/NET/Performance-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The following system configurations were used for benchmarking:
1818
* **Processor:** 11th Gen Intel(R) Core(TM)
1919
* **RAM:** 16GB
2020
* **.NET Version:** .NET 8.0
21-
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.Presentation.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core/30.1.37)
21+
* **Syncfusion<sup>&reg;</sup> Version:** [Syncfusion.Presentation.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core/31.1.17)
2222

2323
## Open and save Presentation
2424

Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ using(WordDocument document = new WordDocument(fileStreamPath, FormatType.Docx))
4242
//Create new Word document
4343
WordDocument newDocument = new WordDocument();
4444
//Add cloned section into new Word document
45-
newDocument.Sections.Add(section.Clone());
45+
newDocument.Sections.Add(document.Sections[i].Clone());
4646
//Saves the Word document to MemoryStream
4747
FileStream outputStream = new FileStream("Section" + i + ".docx", FileMode.OpenOrCreate, FileAccess.ReadWrite);
4848
newDocument.Save(outputStream, FormatType.Docx);
@@ -62,7 +62,7 @@ using (WordDocument document = new WordDocument(@"Template.docx"))
6262
//Create new Word document
6363
WordDocument newDocument = new WordDocument();
6464
//Add cloned section into new Word document
65-
newDocument.Sections.Add(section.Clone());
65+
newDocument.Sections.Add(document.Sections[i].Clone());
6666
//Save and close the new Word documet
6767
newDocument.Save("Section" + i + ".docx");
6868
newDocument.Close();
@@ -641,7 +641,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
641641

642642
## Online Demo
643643

644-
* Explore how to split a Word document by section using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/splitbysection#/bootstrap5).
645-
* See how to split a Word document by heading using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/splitbyheading#/bootstrap5).
646-
* See how to split a Word document by bookmark using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/splitbybookmark#/bootstrap5).
647-
* See how to split a Word document by placeholder using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/splitbyplaceholder#/bootstrap5).
644+
* Explore how to split a Word document by section using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/splitbysection#/tailwind).
645+
* See how to split a Word document by heading using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/splitbyheading#/tailwind).
646+
* See how to split a Word document by bookmark using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/splitbybookmark#/tailwind).
647+
* See how to split a Word document by placeholder using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/splitbyplaceholder#/tailwind).

0 commit comments

Comments
 (0)