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..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 PowerPoint 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. @@ -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..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 @@ -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(); @@ -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