From 9066010e26582623033e0498a68d2044bda7dec4 Mon Sep 17 00:00:00 2001 From: Karan-SF4772 Date: Mon, 22 Sep 2025 16:23:31 +0530 Subject: [PATCH 1/5] Updated the Performance metrics Nuget version --- .../PowerPoint-To-Image/NET/Performance-metrics.md | 2 +- .../Conversions/PowerPoint-To-PDF/NET/Performance-metrics.md | 2 +- .../PowerPoint/PowerPoint-Library/NET/Performance-metrics.md | 2 +- .../Word-Library/NET/Word-document/Split-Word-documents.md | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md index a899b9821..7e437357e 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md @@ -18,7 +18,7 @@ The following system configurations were used for benchmarking: * **Processor:** 11th Gen Intel(R) Core(TM) * **RAM:** 16GB * **.NET Version:** .NET 8.0 -* **Syncfusion® Version:** [Syncfusion.PresentationRenderer.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/30.1.37) +* **Syncfusion® Version:** [Syncfusion.PresentationRenderer.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/31.1.17) ## PowerPoint to image conversion diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Performance-metrics.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Performance-metrics.md index a8520170f..d9cbba424 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Performance-metrics.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Performance-metrics.md @@ -18,7 +18,7 @@ The following system configurations were used for benchmarking: * **Processor:** 11th Gen Intel(R) Core(TM) * **RAM:** 16GB * **.NET Version:** .NET 8.0 -* **Syncfusion® Version:** [Syncfusion.PresentationRenderer.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/30.1.37) +* **Syncfusion® Version:** [Syncfusion.PresentationRenderer.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core/31.1.17) ## PowerPoint to PDF conversion diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Performance-metrics.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Performance-metrics.md index f869ff97d..0bf97db08 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Performance-metrics.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Performance-metrics.md @@ -18,7 +18,7 @@ The following system configurations were used for benchmarking: * **Processor:** 11th Gen Intel(R) Core(TM) * **RAM:** 16GB * **.NET Version:** .NET 8.0 -* **Syncfusion® Version:** [Syncfusion.Presentation.Net.Core v30.1.37](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core/30.1.37) +* **Syncfusion® Version:** [Syncfusion.Presentation.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core/31.1.17) ## Open and save Presentation diff --git a/Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md b/Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md index f62372e26..6d43bff0e 100644 --- a/Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md +++ b/Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md @@ -42,7 +42,7 @@ using(WordDocument document = new WordDocument(fileStreamPath, FormatType.Docx)) //Create new Word document WordDocument newDocument = new WordDocument(); //Add cloned section into new Word document - newDocument.Sections.Add(section.Clone()); + newDocument.Sections.Add(document.Sections[i].Clone()); //Saves the Word document to MemoryStream FileStream outputStream = new FileStream("Section" + i + ".docx", FileMode.OpenOrCreate, FileAccess.ReadWrite); newDocument.Save(outputStream, FormatType.Docx); @@ -62,7 +62,7 @@ using (WordDocument document = new WordDocument(@"Template.docx")) //Create new Word document WordDocument newDocument = new WordDocument(); //Add cloned section into new Word document - newDocument.Sections.Add(section.Clone()); + newDocument.Sections.Add(document.Sections[i].Clone()); //Save and close the new Word documet newDocument.Save("Section" + i + ".docx"); newDocument.Close(); From 2f30988affa4a646b30cb7592bc13bb0451d349b Mon Sep 17 00:00:00 2001 From: Karan-SF4772 Date: Tue, 30 Sep 2025 10:08:31 +0530 Subject: [PATCH 2/5] Updated the Split document online demo hyperlink --- .../NET/Word-document/Split-Word-documents.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md b/Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md index 6d43bff0e..35788c5b3 100644 --- a/Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md +++ b/Document-Processing/Word/Word-Library/NET/Word-document/Split-Word-documents.md @@ -641,7 +641,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* 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). -* 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). -* 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). -* 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). \ No newline at end of file +* 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). +* 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). +* 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). +* 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). \ No newline at end of file From 3350af6bf38d3410c43cec072170350a244d1f02 Mon Sep 17 00:00:00 2001 From: Karan-SF4772 Date: Tue, 30 Sep 2025 10:24:33 +0530 Subject: [PATCH 3/5] Resolved CI issue --- .../Conversions/PowerPoint-To-Image/NET/Performance-metrics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md index 7e437357e..313c4b9ae 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md @@ -6,7 +6,7 @@ control: Presentation documentation: UG --- -# PowerPoint to image performance benchmarks using .NET PowerPoint Library +# PowerPoint to image performance benchmarks with .NET PowerPoint Library The Syncfusion® .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. From 324c5736914aa062bfae38fca70a50d010b4725f Mon Sep 17 00:00:00 2001 From: Karan-SF4772 Date: Tue, 30 Sep 2025 10:42:49 +0530 Subject: [PATCH 4/5] UResolve CI issue --- .../Conversions/PowerPoint-To-Image/NET/Performance-metrics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md index 313c4b9ae..2f299671b 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md @@ -6,7 +6,7 @@ control: Presentation documentation: UG --- -# PowerPoint to image performance benchmarks with .NET PowerPoint Library +# PowerPoint to image performance benchmarks using .NET Library The Syncfusion® .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. From 45046c674d4c3be84dc1c18a94f2534c0aec1150 Mon Sep 17 00:00:00 2001 From: Karan-SF4772 Date: Tue, 30 Sep 2025 12:46:14 +0530 Subject: [PATCH 5/5] Updated powerpoint heading --- .../Conversions/PowerPoint-To-Image/NET/Performance-metrics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md index 2f299671b..dfacaac27 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Performance-metrics.md @@ -6,7 +6,7 @@ control: Presentation documentation: UG --- -# PowerPoint to image performance benchmarks using .NET Library +# PowerPoint to image performance metrics in .NET PowerPoint Library The Syncfusion® .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.