diff --git a/Document-Processing/Excel/Conversions/Chart-to-Image/NET/Chart-to-Image-Conversion.md b/Document-Processing/Excel/Conversions/Chart-to-Image/NET/Chart-to-Image-Conversion.md index b00d2f723..81f265d51 100644 --- a/Document-Processing/Excel/Conversions/Chart-to-Image/NET/Chart-to-Image-Conversion.md +++ b/Document-Processing/Excel/Conversions/Chart-to-Image/NET/Chart-to-Image-Conversion.md @@ -19,36 +19,30 @@ The following code snippet shows how to convert an Excel chart to an image using {% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Chart%20to%20Image/Chart%20to%20Image/.NET/Chart%20to%20Image/Chart%20to%20Image/Program.cs,180" %} using (ExcelEngine excelEngine = new ExcelEngine()) { - //Initialize application - IApplication application = excelEngine.Excel; - - //Set the default version as Xlsx - application.DefaultVersion = ExcelVersion.Xlsx; + IApplication application = excelEngine.Excel; + application.DefaultVersion = ExcelVersion.Xlsx; - //Initialize XlsIORenderer - application.XlsIORenderer = new XlsIORenderer(); + // Initialize XlsIORenderer + application.XlsIORenderer = new XlsIORenderer(); - //Set converter chart image format to PNG or JPEG - application.XlsIORenderer.ChartRenderingOptions.ImageFormat = ExportImageFormat.Png; + //Set converter chart image format to PNG + application.XlsIORenderer.ChartRenderingOptions.ImageFormat = ExportImageFormat.Png; - //Set the chart image quality to best - application.XlsIORenderer.ChartRenderingOptions.ScalingMode = ScalingMode.Best; + FileStream inputStream = new FileStream(Path.GetFullPath(@"Data/InputTemplate.xlsx"), FileMode.Open, FileAccess.Read); + IWorkbook workbook = application.Workbooks.Open(inputStream); + IWorksheet worksheet = workbook.Worksheets[0]; - //Open existing workbook with chart - IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx")); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Access the chart from the worksheet - IChart chart = worksheet.Charts[0]; + IChart chart = worksheet.Charts[0]; - #region Save - //Exporting the chart as image - FileStream outputStream = new FileStream(Path.GetFullPath("Output/Image.png"), FileMode.Create, FileAccess.Write); - chart.SaveAsImage(outputStream); - #endregion + #region Save + //Saving the workbook + FileStream outputStream = new FileStream(Path.GetFullPath("Output/Image.png"), FileMode.Create, FileAccess.Write); + chart.SaveAsImage(outputStream); + #endregion - //Dispose streams - outputStream.Dispose(); + //Dispose streams + outputStream.Dispose(); + inputStream.Dispose(); } {% endhighlight %} diff --git a/Document-Processing/Excel/Conversions/Excel-to-PDF/NET/Performance-Metrics.md b/Document-Processing/Excel/Conversions/Excel-to-PDF/NET/Performance-Metrics.md deleted file mode 100644 index 5a0d2a076..000000000 --- a/Document-Processing/Excel/Conversions/Excel-to-PDF/NET/Performance-Metrics.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Performance Metrics for the Syncfusion Excel to PDF conversion -description: This section provides benchmark results and performance metrics for converting Excel files to PDF using the Syncfusion Excel (XlsIO) library. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# Performance Metrics for Excel to PDF Conversion - -The following benchmark demonstrates the performance of the Syncfusion Excel (XlsIO) library when converting a large Excel workbook—containing 100,000 rows and 50 columns with distinct data types such as text, date and time, numbers, booleans, and formulas—into a PDF. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Data typeTime Taken (sec)Sample Link
Text121GitHub page
DateTime112GitHub page
Number107GitHub page
Boolean83GitHub page
Formula104GitHub page
- -You can find the sample used for Excel to PDF conversion performance evaluation on this GitHub page. diff --git a/Document-Processing/Excel/Excel-Library/NET/Performance-Metrics.md b/Document-Processing/Excel/Excel-Library/NET/Performance-Metrics.md index 70c829cc3..2e251a196 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Performance-Metrics.md +++ b/Document-Processing/Excel/Excel-Library/NET/Performance-Metrics.md @@ -1,6 +1,6 @@ --- -title: Performance Metrics for Syncfusion Excel (XlsIO) Library -description: This section provides benchmark results and insights into the performance capabilities of the Syncfusion Excel (XlsIO) library across various operations. +title: Performance Metrics of the Syncfusion Excel (XlsIO) Library +description: This section provides an overview of the performance capabilities of the Syncfusion Excel (XlsIO) Library. platform: document-processing control: XlsIO documentation: UG @@ -8,79 +8,180 @@ documentation: UG # Performance Metrics in Excel (XlsIO) Library -This section evaluates the performance of the Syncfusion Excel (XlsIO) library when handling text, date and time, number, boolean, and formula data types during operations such as reading and creating Excel documents. +This section evaluates the performance of the Syncfusion XlsIO library when handling String, DateTime, Number, Boolean, and Formula data types during operations such as opening, reading, creating, and saving Excel files. It provides insights into the efficiency and capabilities of XlsIO for processing these data types across various platforms. + +## Open and Read + +The table below illustrates the performance of data types for open operations. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Data typesTest case Matrix (Open)XlsIO (ms)Sample
String150 rows * 10000 columns2213GitHub page
DateTime150 rows * 10000 columns1369GitHub page
Number150 rows * 10000 columns1151GitHub page
Boolean150 rows * 10000 columns1173GitHub page
Formula150 rows * 10000 columns1545GitHub page
+ +You can find the sample used for open operation performance evaluation on this GitHub page. + +The table below illustrates the performance of data types for read operations. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Data typesTest case Matrix (Read)XlsIO (ms)Sample
String150 rows * 10000 columns139GitHub page
DateTime150 rows * 10000 columns506GitHub page
Number150 rows * 10000 columns294GitHub page
Boolean150 rows * 10000 columns99GitHub page
Formula150 rows * 10000 columns165GitHub page
+ +You can find the sample used for read operation performance evaluation on this GitHub page. ## Create and Save -The table below illustrates the performance of creating and saving an Excel document containing 100,000 rows and 50 columns for different data types. +The table below illustrates the performance of data types for create operations. - +
- - - + + + + - - + + + - + + - + + - + + - + +
Data typeTime Taken (sec)Sample LinkData typesTest case Matrix (Create)XlsIO (ms)Sample
Text13String150 rows * 10000 columns1177 GitHub page
DateTime15150 rows * 10000 columns2301 GitHub page
Number5150 rows * 10000 columns436 GitHub page
Boolean5150 rows * 10000 columns422 GitHub page
Formula35150 rows * 10000 columns4089 GitHub page
+ +You can find the sample used for create operation performance evaluation on this GitHub page. -## Load and Read - -The table below illustrates the performance of loading and reading cell values from an Excel document with 100,000 rows and 50 columns for different data types. +The table below illustrates the performance of data types for save operations. - - - + + + + - - - + + + + - - + + + - - + + + - - + + + - - + + + -
Data typeTime Taken (sec)Sample LinkData typesTest case Matrix (Save)XlsIO (ms)Sample
Text9GitHub pageString150 rows * 10000 columns1422GitHub page
DateTime5GitHub page150 rows * 10000 columns1270GitHub page
Number6GitHub page150 rows * 10000 columns916GitHub page
Boolean4GitHub page150 rows * 10000 columns781GitHub page
Formula9GitHub page150 rows * 10000 columns1222GitHub page
- + + +You can find the sample used for save operation performance evaluation on this GitHub page. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/Slicer.md b/Document-Processing/Excel/Excel-Library/NET/Slicer.md index b6e94db29..9b76a0334 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Slicer.md +++ b/Document-Processing/Excel/Excel-Library/NET/Slicer.md @@ -255,102 +255,6 @@ slicer.SlicerStyle = ExcelSlicerStyle.SlicerStyleDark2 {% endhighlight %} {% endtabs %} -### Select a Slicer Item - -The following example shows how to select items in a slicer. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -ISlicer slicer = sheet.Slicers[0]; -ISlicerCache cache = slicer.SlicerCache; -cache.SlicerCacheItems[0].IsSelected = true; -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -ISlicer slicer = sheet.Slicers[0]; -ISlicerCache cache = slicer.SlicerCache; -cache.SlicerCacheItems[0].IsSelected = true; -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Dim slicer As ISlicer = sheet.Slicers(0) -Dim cache As ISlicerCache = slicer.SlicerCache -cache.SlicerCacheItems(0).IsSelected = True -{% endhighlight %} -{% endtabs %} - -### Select slicer filter type - -The following example shows how to select the slicer filter type. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -ISlicer slicer = sheet.Slicers[0]; -ISlicerCache cache = slicer.SlicerCache; -cache.CrossFilterType = SlicerCrossFilterType.ShowItemsWithDataAtTop; -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -ISlicer slicer = sheet.Slicers[0]; -ISlicerCache cache = slicer.SlicerCache; -cache.CrossFilterType = SlicerCrossFilterType.ShowItemsWithDataAtTop; -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Dim slicer As ISlicer = sheet.Slicers(0) -Dim cache As ISlicerCache = slicer.SlicerCache -cache.CrossFilterType = SlicerCrossFilterType.ShowItemsWithDataAtTop -{% endhighlight %} -{% endtabs %} - -### Sort the slicer items - -The following example shows how to sort the slicer items. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -ISlicer slicer = sheet.Slicers[0]; -ISlicerCache cache = slicer.SlicerCache; -cache.IsAscending = true; -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -ISlicer slicer = sheet.Slicers[0]; -ISlicerCache cache = slicer.SlicerCache; -cache.IsAscending = true; -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Dim slicer As ISlicer = sheet.Slicers(0) -Dim cache As ISlicerCache = slicer.SlicerCache -cache.IsAscending = True -{% endhighlight %} -{% endtabs %} - -### Sort the slicer items using Custom list sorting option - -The following example shows how to sort the slicer items using Custom list sorting option - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -ISlicer slicer = sheet.Slicers[0]; -ISlicerCache cache = slicer.SlicerCache; -cache.UseCustomListSorting = true; -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -ISlicer slicer = sheet.Slicers[0]; -ISlicerCache cache = slicer.SlicerCache; -cache.UseCustomListSorting = true; -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Dim slicer As ISlicer = sheet.Slicers(0) -Dim cache As ISlicerCache = slicer.SlicerCache -cache.UseCustomListSorting = True -{% endhighlight %} -{% endtabs %} - The following code snippet illustrates how to format an existing slicer with all the above discussed properties. {% tabs %} @@ -397,19 +301,6 @@ using (ExcelEngine excelEngine = new ExcelEngine()) //Slicer style slicer.SlicerStyle = ExcelSlicerStyle.SlicerStyleDark2; - - //Select the slicer item - ISlicerCache cache = slicer.SlicerCache; - cache.SlicerCacheItems[0].IsSelected = true; - - //Set the slicer filter type - cache.CrossFilterType = SlicerCrossFilterType.ShowItemsWithDataAtTop; - - //Sort the slicer items in ascending order - cache.IsAscending = true; - - //Custom list sorting - cache.UseCustomListSorting = true; workbook.SaveAs("Output.xlsx"); } @@ -458,19 +349,6 @@ using (ExcelEngine excelEngine = new ExcelEngine()) //Slicer style slicer.SlicerStyle = ExcelSlicerStyle.SlicerStyleDark2; - - //Select the slicer item - ISlicerCache cache = slicer.SlicerCache; - cache.SlicerCacheItems[0].IsSelected = true; - - //Set the slicer filter type - cache.CrossFilterType = SlicerCrossFilterType.ShowItemsWithDataAtTop; - - //Sort the slicer items in ascending order - cache.IsAscending = true; - - //Custom list sorting - cache.UseCustomListSorting = true; workbook.SaveAs("Output.xlsx"); } @@ -518,19 +396,6 @@ Using excelEngine As ExcelEngine = New ExcelEngine 'Slicer style slicer.SlicerStyle = ExcelSlicerStyle.SlicerStyleDark2 - - 'Select the slicer item - Dim cache As ISlicerCache = slicer.SlicerCache - cache.SlicerCacheItems(0).IsSelected = True - - 'Set the slicer filter type - cache.CrossFilterType = SlicerCrossFilterType.ShowItemsWithDataAtTop - - 'Sort the slicer items in ascending order - cache.IsAscending = True - - 'Custom list sorting - cache.UseCustomListSorting = True workbook.SaveAs("Output.xlsx") End Using diff --git a/Document-Processing/Excel/Excel-Library/NET/Working-with-Cell-or-Range-Formatting.md b/Document-Processing/Excel/Excel-Library/NET/Working-with-Cell-or-Range-Formatting.md index 4c0e33bea..89a094af2 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Working-with-Cell-or-Range-Formatting.md +++ b/Document-Processing/Excel/Excel-Library/NET/Working-with-Cell-or-Range-Formatting.md @@ -919,52 +919,6 @@ workbook.DetectDateTimeInValue = False {% endhighlight %} {% endtabs %} -N> To display the **$** symbol, apply a currency or accounting number format. Using a number format without any currency symbol does not show any currency symbol in the value. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -//Plain number format -sheet.Range["A1"].Number = 100; -sheet.Range["A1"].NumberFormat = "0.00"; //shows 100.00 - -//Currency format -sheet.Range["A2"].Number = 1234.56; -sheet.Range["A2"].NumberFormat = "$#,##0.00"; //shows $1,234.56 - -//Accounting format -sheet.Range["A3"].Number = 234; -sheet.Range["A3"].NumberFormat = "_($* #,##0.00_)"; //shows $ 234.00 -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -//Plain number format -sheet.Range["A1"].Number = 100; -sheet.Range["A1"].NumberFormat = "0.00"; //shows 100.00 - -//Currency format -sheet.Range["A2"].Number = 1234.56; -sheet.Range["A2"].NumberFormat = "$#,##0.00"; //shows $1,234.56 - -//Accounting format -sheet.Range["A3"].Number = 234; -sheet.Range["A3"].NumberFormat = "_($* #,##0.00_)"; //shows $ 234.00 -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -'Plain Number format -sheet.Range("A1").Number = 100 -sheet.Range("A1").NumberFormat = "0.00" 'shows 100.00 - -'Currency format -sheet.Range("A2").Number = 1234.56 -sheet.Range("A2").NumberFormat = "$#,##0.00" 'shows $1,234.56 - -'Accounting format -sheet.Range("A3").Number = 234 -sheet.Range("A3").NumberFormat = "_($* #,##0.00_)" 'shows $ 234.00 -{% endhighlight %} -{% endtabs %} - ## Number Format Detection Behavior Based on System Culture In Microsoft Excel, when a value is inserted, the system's culture settings determine whether the value is interpreted as a [Text](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IRange.html#Syncfusion_XlsIO_IRange_Text) or [Number](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IRange.html#Syncfusion_XlsIO_IRange_Number). If it is a valid number according to the current culture, Excel automatically detects and applies a corresponding number format. @@ -2172,4 +2126,4 @@ A complete working example to apply rich text formatting in C# is present on [th The output of the previous code is shown as follows: -![Excel document with rich-text formatting](Working-with-Cell-or-Range-Formatting_images/Working-with-Cell-or-Range-Formatting_img6.jpeg) +![Excel document with rich-text formatting](Working-with-Cell-or-Range-Formatting_images/Working-with-Cell-or-Range-Formatting_img6.jpeg) \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/Working-with-Conditional-Formatting.md b/Document-Processing/Excel/Excel-Library/NET/Working-with-Conditional-Formatting.md index 1edddb8bd..acf8c522a 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Working-with-Conditional-Formatting.md +++ b/Document-Processing/Excel/Excel-Library/NET/Working-with-Conditional-Formatting.md @@ -10,9 +10,6 @@ documentation: UG Conditional formatting allows to format the contents of a cell dynamically. This can be defined and applied in XlsIO through the [IConditionalFormat](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IConditionalFormat.html) interface. -To quickly learn How to Apply Conditional Formatting in Excel Using .NET Excel Library, check out this video: -{% youtube "https://www.youtube.com/watch?v=S1lkNLV70hc" %} - ## Create a Conditional Format  The [IConditionalFormats](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IConditionalFormats.html) represents a collection of conditional formats for a single [IRange](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IRange.html). One or more conditional formats can be added to the range as follows. diff --git a/Document-Processing/Excel/Excel-Library/NET/Working-with-Formulas.md b/Document-Processing/Excel/Excel-Library/NET/Working-with-Formulas.md index 44c1a0a09..58e5472b1 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Working-with-Formulas.md +++ b/Document-Processing/Excel/Excel-Library/NET/Working-with-Formulas.md @@ -10,9 +10,6 @@ keywords: c#, vb.net, excel, read excel, edit excel, edit excel cell, excel form [Formulas](https://support.microsoft.com/en-gb/office/overview-of-formulas-in-excel-ecfdc708-9162-49e8-b993-c311f47ca173?redirectsourcepath=%252fen-us%252farticle%252foverview-of-formulas-7abfda78-eff3-4cc6-b4a7-6350d512d2dc) are entries in Excel that have equations, by which values are calculated. A typical formula might contain cell references, constants, and even functions. -To quickly learn How to Work with Formulas in an Excel Using the .NET Excel Library, check out this video: -{% youtube "https://www.youtube.com/watch?v=SjHcYYvVSF4" %} - ## Enable and Disable Calculation To perform calculation in an Excel workbook, it is recommended to invoke [EnableSheetCalculations](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorksheet.html#Syncfusion_XlsIO_IWorksheet_EnableSheetCalculations) method of [IWorksheet](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorksheet.html). Enabling this method will initialize [CalcEngine](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-formulas#calculation-engine) objects and retrieves calculated values of formulas in a worksheet. diff --git a/Document-Processing/Excel/Excel-Library/NET/Worksheet/Page-Setup-Options.md b/Document-Processing/Excel/Excel-Library/NET/Worksheet/Page-Setup-Options.md index 66a89a2ca..947905787 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Worksheet/Page-Setup-Options.md +++ b/Document-Processing/Excel/Excel-Library/NET/Worksheet/Page-Setup-Options.md @@ -1024,118 +1024,4 @@ End Using {% endhighlight %} {% endtabs %} -A complete working example to add headers and footers in an Excel document using C# is present on [this GitHub page.](https://github.com/SyncfusionExamples/XlsIO-Examples/tree/master/Worksheet%20Features/Header%20and%20Footer/.NET/Header%20and%20Footer) - -## Paper Size - -The PaperSize functionality allows you to specify the paper size for worksheet. - -The following code snippet shows how to use PaperSize. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Worksheet%20Features/PaperSize/.NET/PaperSize/PaperSize/Program.cs,180" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx")); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Set the paper size to A4 - worksheet.PageSetup.PaperSize = ExcelPaperSize.PaperA4; - - //Saving the workbook - workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx")); -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Open("InputTemplate.xlsx"); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Set the paper size to A4 - worksheet.PageSetup.PaperSize = ExcelPaperSize.PaperA4; - - //Saving the workbook - workbook.SaveAs("Output.xlsx"); -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As ExcelEngine = New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - Dim workbook As IWorkbook = application.Workbooks.Open("InputTemplate.xlsx") - Dim worksheet As IWorksheet = workbook.Worksheets(0) - - 'Set the paper size to A4 - worksheet.PageSetup.PaperSize = ExcelPaperSize.PaperA4 - - 'Saving the workbook - workbook.SaveAs("Output.xlsx") -End Using -{% endhighlight %} -{% endtabs %} - -A complete working example to set the paper size in C# is present on this GitHub page. - -## Orientation - -The Orientation functionality allows you to specify the orientation for worksheet. - -The following code snippet shows how to use Orientation. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Worksheet%20Features/Orientation/.NET/Orientation/Orientation/Program.cs,180" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx")); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Set the page orientation - worksheet.PageSetup.Orientation = ExcelPageOrientation.Landscape; - - //Saving the workbook - workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx")); -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Open("InputTemplate.xlsx"); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Set the page orientation - worksheet.PageSetup.Orientation = ExcelPageOrientation.Landscape; - - //Saving the workbook - workbook.SaveAs("Output.xlsx"); -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As ExcelEngine = New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - Dim workbook As IWorkbook = application.Workbooks.Open("InputTemplate.xlsx") - Dim worksheet As IWorksheet = workbook.Worksheets(0) - - 'Set the page orientation - worksheet.PageSetup.Orientation = ExcelPageOrientation.Landscape - - 'Saving the workbook - workbook.SaveAs("Output.xlsx") -End Using -{% endhighlight %} -{% endtabs %} - -A complete working example to set the page orientation in C# is present on this GitHub page. \ No newline at end of file +A complete working example to add headers and footers in an Excel document using C# is present on [this GitHub page.](https://github.com/SyncfusionExamples/XlsIO-Examples/tree/master/Worksheet%20Features/Header%20and%20Footer/.NET/Header%20and%20Footer) \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/create-read-edit-excel-files-in-aws-lambda.md b/Document-Processing/Excel/Excel-Library/NET/create-read-edit-excel-files-in-aws-lambda.md index ebe6e825f..26a5cafae 100644 --- a/Document-Processing/Excel/Excel-Library/NET/create-read-edit-excel-files-in-aws-lambda.md +++ b/Document-Processing/Excel/Excel-Library/NET/create-read-edit-excel-files-in-aws-lambda.md @@ -222,9 +222,17 @@ using (ExcelEngine excelEngine = new ExcelEngine()) worksheet.Range["A9:A14"].RowHeight = 15; worksheet.Range["A15:A23"].RowHeight = 18; - MemoryStream stream = new MemoryStream(); + //Saving the Excel to the MemoryStream + MemoryStream stream = new MemoryStream(); workbook.SaveAs(stream); - return Convert.ToBase64String(stream.ToArray()); + + //Set the position as '0'. + stream.Position = 0; + + //Download the Excel file in the browser + FileStreamResult fileStreamResult = new FileStreamResult(stream, "application/excel"); + fileStreamResult.FileDownloadName = "Output.xlsx"; + return fileStreamResult; } {% endhighlight %} diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/can-pivot-tables-share-calculate-field-names.md b/Document-Processing/Excel/Excel-Library/NET/faqs/can-pivot-tables-share-calculate-field-names.md deleted file mode 100644 index 7b98e3a68..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/can-pivot-tables-share-calculate-field-names.md +++ /dev/null @@ -1,204 +0,0 @@ ---- -title: Calculated field naming across PivotTables | Syncfusion -description: This page explains whether multiple PivotTables can use calculated fields with the same name in Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# Can PivotTables have the same name for multiple calculated fields? - -In **Microsoft Excel**, calculated fields are scoped to the pivot cache, not to individual PivotTables. - -This means: - -* **If multiple PivotTables share the same cache** - * Calculated fields with the same name cannot be defined. Excel reuses the existing field from the cache, and its formula cannot be redefined independently. - * Calculated fields with different names can be defined, and they will be available to all PivotTables that share that cache. - -* **If PivotTables use separate caches (even if the source data is identical)** - * Calculated fields with the same name or with different names can be defined. Each cache maintains its own calculated field collection, so there is no conflict. - -**Syncfusion XlsIO** follows the same cache scoped behavior: -* With a shared cache, calculated field names must be unique. -* With separate caches, calculated field names can be identical or different. - -The following examples illustrate calculated field naming across PivotTables in C# (cross-platform and Windows-specific) and VB.NET. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/FAQ/Pivot%20Tables%20Calculated%20Field%20Names/.NET/PivotTablesCalculatedFieldNames/PivotTablesCalculatedFieldNames/Program.cs,180" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(3); - IWorksheet dataSheet = workbook.Worksheets[0]; - IWorksheet pivotSheet1 = workbook.Worksheets[1]; - IWorksheet pivotSheet2 = workbook.Worksheets[2]; - - //Add sample data - dataSheet.Range["A1"].Text = "Product"; - dataSheet.Range["B1"].Text = "Sales"; - dataSheet.Range["C1"].Text = "Cost"; - - dataSheet.Range["A2"].Text = "Laptop"; - dataSheet.Range["B2"].Number = 5000; - dataSheet.Range["C2"].Number = 3000; - - dataSheet.Range["A3"].Text = "Tablet"; - dataSheet.Range["B3"].Number = 3000; - dataSheet.Range["C3"].Number = 2000; - - dataSheet.Range["A4"].Text = "Phone"; - dataSheet.Range["B4"].Number = 4000; - dataSheet.Range["C4"].Number = 2500; - - //CASE 1: Shared pivot cache - calculated field names must be unique - IPivotCache sharedCache = workbook.PivotCaches.Add(dataSheet["A1:C4"]); - - IPivotTable pivot1 = pivotSheet1.PivotTables.Add("Pivot1", pivotSheet1["A1"], sharedCache); - pivot1.Fields[0].Axis = PivotAxisTypes.Row; - pivot1.DataFields.Add(pivot1.Fields[1], "Total Sales", PivotSubtotalTypes.Sum); - pivot1.CalculatedFields.Add("Profit", "Sales - Cost"); - - IPivotTable pivot2 = pivotSheet1.PivotTables.Add("Pivot2", pivotSheet1["F1"], sharedCache); - pivot2.Fields[0].Axis = PivotAxisTypes.Row; - pivot2.DataFields.Add(pivot2.Fields[2], "Total Cost", PivotSubtotalTypes.Sum); - pivot2.CalculatedFields.Add("Margin", "Sales - Cost"); - - //CASE 2: Separate pivot caches - identical or different calculated field names are allowed - IPivotTable pivot3 = pivotSheet2.PivotTables.Add("Pivot3", pivotSheet2["A1"], - workbook.PivotCaches.Add(dataSheet["A1:C4"])); - pivot3.Fields[0].Axis = PivotAxisTypes.Row; - pivot3.DataFields.Add(pivot3.Fields[1], "Total Sales", PivotSubtotalTypes.Sum); - pivot3.CalculatedFields.Add("Profit", "Sales - Cost"); - - IPivotTable pivot4 = pivotSheet2.PivotTables.Add("Pivot4", pivotSheet2["F1"], - workbook.PivotCaches.Add(dataSheet["A1:C4"])); - pivot4.Fields[0].Axis = PivotAxisTypes.Row; - pivot4.DataFields.Add(pivot4.Fields[2], "Total Cost", PivotSubtotalTypes.Sum); - pivot4.CalculatedFields.Add("Profit", "Sales - Cost"); - - //Saving the workbook - workbook.SaveAs(Path.GetFullPath(@"Output/Output.xlsx")); -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(3); - IWorksheet dataSheet = workbook.Worksheets[0]; - IWorksheet pivotSheet1 = workbook.Worksheets[1]; - IWorksheet pivotSheet2 = workbook.Worksheets[2]; - - //Add sample data - dataSheet.Range["A1"].Text = "Product"; - dataSheet.Range["B1"].Text = "Sales"; - dataSheet.Range["C1"].Text = "Cost"; - - dataSheet.Range["A2"].Text = "Laptop"; - dataSheet.Range["B2"].Number = 5000; - dataSheet.Range["C2"].Number = 3000; - - dataSheet.Range["A3"].Text = "Tablet"; - dataSheet.Range["B3"].Number = 3000; - dataSheet.Range["C3"].Number = 2000; - - dataSheet.Range["A4"].Text = "Phone"; - dataSheet.Range["B4"].Number = 4000; - dataSheet.Range["C4"].Number = 2500; - - //CASE 1: Shared pivot cache - calculated field names must be unique - IPivotCache sharedCache = workbook.PivotCaches.Add(dataSheet["A1:C4"]); - - IPivotTable pivot1 = pivotSheet1.PivotTables.Add("Pivot1", pivotSheet1["A1"], sharedCache); - pivot1.Fields[0].Axis = PivotAxisTypes.Row; - pivot1.DataFields.Add(pivot1.Fields[1], "Total Sales", PivotSubtotalTypes.Sum); - pivot1.CalculatedFields.Add("Profit", "Sales - Cost"); - - IPivotTable pivot2 = pivotSheet1.PivotTables.Add("Pivot2", pivotSheet1["F1"], sharedCache); - pivot2.Fields[0].Axis = PivotAxisTypes.Row; - pivot2.DataFields.Add(pivot2.Fields[2], "Total Cost", PivotSubtotalTypes.Sum); - pivot2.CalculatedFields.Add("Margin", "Sales - Cost"); - - //CASE 2: Separate pivot caches - identical or different calculated field names are allowed - IPivotTable pivot3 = pivotSheet2.PivotTables.Add("Pivot3", pivotSheet2["A1"], - workbook.PivotCaches.Add(dataSheet["A1:C4"])); - pivot3.Fields[0].Axis = PivotAxisTypes.Row; - pivot3.DataFields.Add(pivot3.Fields[1], "Total Sales", PivotSubtotalTypes.Sum); - pivot3.CalculatedFields.Add("Profit", "Sales - Cost"); - - IPivotTable pivot4 = pivotSheet2.PivotTables.Add("Pivot4", pivotSheet2["F1"], - workbook.PivotCaches.Add(dataSheet["A1:C4"])); - pivot4.Fields[0].Axis = PivotAxisTypes.Row; - pivot4.DataFields.Add(pivot4.Fields[2], "Total Cost", PivotSubtotalTypes.Sum); - pivot4.CalculatedFields.Add("Profit", "Sales - Cost"); - - //Saving the workbook - workbook.SaveAs("Output.xlsx"); -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - - Dim workbook As IWorkbook = application.Workbooks.Create(3) - Dim dataSheet As IWorksheet = workbook.Worksheets(0) - Dim pivotSheet1 As IWorksheet = workbook.Worksheets(1) - Dim pivotSheet2 As IWorksheet = workbook.Worksheets(2) - - ' Add sample data - dataSheet.Range("A1").Text = "Product" - dataSheet.Range("B1").Text = "Sales" - dataSheet.Range("C1").Text = "Cost" - - dataSheet.Range("A2").Text = "Laptop" - dataSheet.Range("B2").Number = 5000 - dataSheet.Range("C2").Number = 3000 - - dataSheet.Range("A3").Text = "Tablet" - dataSheet.Range("B3").Number = 3000 - dataSheet.Range("C3").Number = 2000 - - dataSheet.Range("A4").Text = "Phone" - dataSheet.Range("B4").Number = 4000 - dataSheet.Range("C4").Number = 2500 - - 'CASE 1: Shared pivot cache - calculated field names must be unique - Dim sharedCache As IPivotCache = workbook.PivotCaches.Add(dataSheet.Range("A1:C4")) - - Dim pivot1 As IPivotTable = pivotSheet1.PivotTables.Add("Pivot1", pivotSheet1.Range("A1"), sharedCache) - pivot1.Fields(0).Axis = PivotAxisTypes.Row - pivot1.DataFields.Add(pivot1.Fields(1), "Total Sales", PivotSubtotalTypes.Sum) - pivot1.CalculatedFields.Add("Profit", "Sales - Cost") - - Dim pivot2 As IPivotTable = pivotSheet1.PivotTables.Add("Pivot2", pivotSheet1.Range("F1"), sharedCache) - pivot2.Fields(0).Axis = PivotAxisTypes.Row - pivot2.DataFields.Add(pivot2.Fields(2), "Total Cost", PivotSubtotalTypes.Sum) - pivot2.CalculatedFields.Add("Margin", "Sales - Cost") - - 'CASE 2: Separate pivot caches - identical or different calculated field names are allowed - Dim pivot3 As IPivotTable = pivotSheet2.PivotTables.Add("Pivot3", pivotSheet2.Range("A1"), - workbook.PivotCaches.Add(dataSheet.Range("A1:C4"))) - pivot3.Fields(0).Axis = PivotAxisTypes.Row - pivot3.DataFields.Add(pivot3.Fields(1), "Total Sales", PivotSubtotalTypes.Sum) - pivot3.CalculatedFields.Add("Profit", "Sales - Cost") - - Dim pivot4 As IPivotTable = pivotSheet2.PivotTables.Add("Pivot4", pivotSheet2.Range("F1"), - workbook.PivotCaches.Add(dataSheet.Range("A1:C4"))) - pivot4.Fields(0).Axis = PivotAxisTypes.Row - pivot4.DataFields.Add(pivot4.Fields(2), "Total Cost", PivotSubtotalTypes.Sum) - pivot4.CalculatedFields.Add("Profit", "Sales - Cost") - - 'Saving the workbook - workbook.SaveAs("Output.xlsx") -End Using -{% endhighlight %} -{% endtabs %} - -A complete working example to demonstrate calculated field naming across PivotTables using C# is present on this GitHub page. diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/can-xlsio-determine-PDF-page-count-before-Excel-to-PDF-conversion.md b/Document-Processing/Excel/Excel-Library/NET/faqs/can-xlsio-determine-PDF-page-count-before-Excel-to-PDF-conversion.md deleted file mode 100644 index 16da732ac..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/can-xlsio-determine-PDF-page-count-before-Excel-to-PDF-conversion.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: XlsIO support for page count before PDF conversion | Syncfusion -description: This page explains whether Syncfusion XlsIO can determine the total number of pages of the PDF file before Excel to PDF conversion. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# Can XlsIO determine PDF page count before Excel to PDF conversion? - -No. XlsIO does not support determining the page count of the PDF document before Excel to PDF conversion. The final page count depends on factors such as print settings, page layout, scaling options, and content distribution. These elements can only be assessed during the conversion process, so calculating the page count in advance is not possible. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-auto-adjust-chart-axis-minimum-and-maximum-values.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-auto-adjust-chart-axis-minimum-and-maximum-values.md deleted file mode 100644 index 50c10f753..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-auto-adjust-chart-axis-minimum-and-maximum-values.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Chart axis auto-adjust in XlsIO | Syncfusion -description: This page explains whether Syncfusion XlsIO supports auto adjustment of chart axis values using Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# Does XlsIO auto-adjust chart axis minimum and maximum values? - -No. In Microsoft Excel, if the axis maximum value is lower than the minimum value, Excel automatically adjusts the minimum value (for example, a minimum of 1.25 and maximum of 0 may yield a minimum like -10). XlsIO does not support this auto adjustment of chart axis values. When configuring chart axes, ensure that the maximum value is greater than the minimum value. - -For details on setting chart axis minimum and maximum values in XlsIO, see the Chart Axis Settings. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-autofit-row-and-column-sizes-based-on-images.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-autofit-row-and-column-sizes-based-on-images.md deleted file mode 100644 index a90349a05..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-autofit-row-and-column-sizes-based-on-images.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Row and column autofit with images in XlsIO | Syncfusion -description: This page explains whether Syncfusion XlsIO supports autofitting row height and column width based on images using Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# Does XlsIO autofit row and column sizes based on images? - -No. In Microsoft Excel, the **Autofit** functionality adjusts row height and column width based on cell content only; it does not autofit sizes based on images. Syncfusion XlsIO follows the same behavior. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-prefix-pivot-table-calculated-field-headers-with-sum-of.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-prefix-pivot-table-calculated-field-headers-with-sum-of.md deleted file mode 100644 index fe3244be3..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-prefix-pivot-table-calculated-field-headers-with-sum-of.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: PivotTable calculated field header prefix in XlsIO | Syncfusion -description: This page explains whether Syncfusion XlsIO prefixes PivotTable calculated field headers with "Sum of" when adding a calculated field. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# Does XlsIO prefix PivotTable calculated field headers with "Sum of"? - -Yes. When a calculated field is added to a PivotTable, Microsoft Excel automatically prefixes the column header with **Sum of** before the original name. For example, a field named **Profit** becomes **Sum of Profit**. XlsIO follows the same behavior to remain consistent with Excel. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-converting-an-xlsb-file-to-xlsx.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-converting-an-xlsb-file-to-xlsx.md deleted file mode 100644 index 6613de80a..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-converting-an-xlsb-file-to-xlsx.md +++ /dev/null @@ -1,56 +0,0 @@ ---- -title: Convert XLSB to XLSX using XlsIO | Syncfusion -description: This page explains how to convert an XLSB file to XLSX with the Syncfusion .NET Excel (XlsIO) library. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# Does XlsIO support converting an XLSB file to XLSX? - -Yes. XlsIO supports converting an XLSB file to XLSX; however, the conversion is limited to cell values and cell styles. - -The example below shows how to convert an XLSB file to an XLSX file. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - - //Open an existing XLSB file - IWorkbook workbook = application.Workbooks.Open("Sample.xlsb"); - - //Save the file as XLSX - workbook.SaveAs("Output.xlsx"); -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - - //Open an existing XLSB file - IWorkbook workbook = application.Workbooks.Open("Sample.xlsb"); - - //Save the file as XLSX - workbook.SaveAs("Output.xlsx"); -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - - ' Open an existing XLSB file - Dim workbook As IWorkbook = application.Workbooks.Open("Sample.xlsb") - - ' Save the file as XLSX - workbook.SaveAs("Output.xlsx") -End Using -{% endhighlight %} -{% endtabs %} \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-internal-links-when-converting-Excel-to-PDF.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-internal-links-when-converting-Excel-to-PDF.md deleted file mode 100644 index fdd3c01a8..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-internal-links-when-converting-Excel-to-PDF.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Support for internal links when converting Excel to PDF | Syncfusion -description: This page explains whether Syncfusion XlsIO supports internal links when converting Excel to PDF using Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# Does XlsIO support internal links when converting Excel to PDF? - -No. As per Microsoft Excel behavior, internal links within a worksheet are not retained when exported to PDF. Similarly, XlsIO does not support adding internal links in the converted PDF document. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-opacity-or-transparency-for-cell-background-colors-in-Excel.md b/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-opacity-or-transparency-for-cell-background-colors-in-Excel.md deleted file mode 100644 index 82ce72ea8..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-opacity-or-transparency-for-cell-background-colors-in-Excel.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -title: Transparency support for cell background color | Syncfusion -description: Learn whether Syncfusion XlsIO supports setting Opacity or transparency for cell background colors in Excel. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# XlsIO support for cell background color transparency in Excel - -XlsIO does not support opacity or transparency for cell background colors in Excel. - -While the XlsIO API allows setting alpha (transparency) values for cell background colors, Microsoft Excel does not support rendering transparent cell fills. Excel silently discards the alpha component during rendering and file saving. As a result, any transparency value set in XlsIO will be ignored, and Excel will apply only the RGB portion of the color. - -**For example:** -~~~ -worksheet.Range["A1"].CellStyle.Color = Color.FromArgb(128, 255, 0, 0) //(50% transparent red) -worksheet.Range["A2"].CellStyle.Color = Color.FromArgb(255, 255, 0, 0) //(solid red) -~~~ - -Both render identically in Excel as solid red. While XlsIO accepts ARGB inputs, the alpha component has no effect due to Excel's inherent limitations. Only the RGB portion of the color is applied. diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-are-spaces-in-cell-values-handled-by-xlsio-during-calculation.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-are-spaces-in-cell-values-handled-by-xlsio-during-calculation.md deleted file mode 100644 index 9735d0177..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-are-spaces-in-cell-values-handled-by-xlsio-during-calculation.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Handling spaces in Excel calculations | Syncfusion -description: This page explains how Microsoft Excel and Syncfusion XlsIO handle leading and trailing spaces in cell values during calculation and display. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How are spaces in cell values handled by XlsIO during calculation? - -In Microsoft Excel, leading and trailing spaces in cell values are preserved for display purposes. However, when performing calculations (for example, **=A1+5** where A1 contains **" 25 "** with spaces), Excel automatically ignores those spaces and treats the underlying numeric value. Spaces are always shown in the cell but ignored in calculations. Syncfusion XlsIO follows the same behavior. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-many-hyperlinks-can-a-single-cell-contain-in-Excel.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-many-hyperlinks-can-a-single-cell-contain-in-Excel.md deleted file mode 100644 index b88b1a059..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-many-hyperlinks-can-a-single-cell-contain-in-Excel.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Hyperlinks in a single cell in Excel | Syncfusion -description: Learn about how many hyperlinks can a single cell contain in Excel using Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How many hyperlinks can a single cell contain in Excel? - -In Microsoft Excel, a single cell can contain only **one hyperlink**. It is not possible to assign multiple hyperlinks to the same cell. This limitation applies when working with Excel manually or programmatically using the Syncfusion .NET Excel library (XlsIO). diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-align-the-image-inside-the-cell.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-align-the-image-inside-the-cell.md deleted file mode 100644 index cb22aa130..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-align-the-image-inside-the-cell.md +++ /dev/null @@ -1,105 +0,0 @@ ---- -title: Align a picture inside a cell in an Excel worksheet | Syncfusion -description: Learn how to align an image precisely within a worksheet cell using the Syncfusion .NET Excel (XlsIO) library, including positioning, fitting to the cell. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How to align a picture inside a cell in an Excel worksheet? - -Image can be aligned in the cell as required using the **TopRowOffset** and **LeftColumnOffset** properties of **ShapeImpl** instance. The following example shows how to align a picture inside a worksheet cell using the Syncfusion .NET Excel (XlsIO) library. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(1); - IWorksheet worksheet = workbook.Worksheets[0]; - - int row = 2; - int column = 3; - - //Adding a picture - FileStream imageStream = new FileStream("../../../Data/Image.png", FileMode.Open, FileAccess.Read); - IPictureShape shape = worksheet.Pictures.AddPicture(row, column, imageStream); - - //Insert the image into the cell - (shape as ShapeImpl).Height = worksheet.GetRowHeightInPixels(row); - (shape as ShapeImpl).Width = worksheet.GetColumnWidthInPixels(column); - - //Algin the image inside the cell - (shape as ShapeImpl).TopRowOffset = 50; - (shape as ShapeImpl).LeftColumnOffset = 50; - - #region Save - //Saving the workbook - workbook.SaveAs("../../../Output/Picture.xlsx"); - #endregion - - //Dispose streams - imageStream.Dispose(); -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(1); - IWorksheet worksheet = workbook.Worksheets[0]; - - int row = 2; - int column = 3; - - //Adding a picture - string image = "../../Data/Image.png"; - IPictureShape shape = worksheet.Pictures.AddPicture(row, column, image); - - // Insert the image into the cell - (shape as ShapeImpl).Height = worksheet.GetRowHeightInPixels(row); - (shape as ShapeImpl).Width = worksheet.GetColumnWidthInPixels(column); - - //Algin the image inside the cell - (shape as ShapeImpl).TopRowOffset = 50; - (shape as ShapeImpl).LeftColumnOffset = 50; - - #region Save - //Saving the workbook - workbook.SaveAs("../../Output/Picture.xlsx"); - #endregion -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} - Using excelEngine As New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - - Dim workbook As IWorkbook = application.Workbooks.Create(1) - Dim worksheet As IWorksheet = workbook.Worksheets(0) - - Dim row As Integer = 2 - Dim column As Integer = 3 - - ' Adding a picture - Dim image As String = "../../Data/Image.png" - Dim shape As IPictureShape = worksheet.Pictures.AddPicture(row, column, image) - - ' Insert the image into the cell - Dim impl As ShapeImpl = CType(shape, ShapeImpl) - impl.Height = worksheet.GetRowHeightInPixels(row) - impl.Width = worksheet.GetColumnWidthInPixels(column) - - ' Align the image inside the cell - impl.TopRowOffset = 50 - impl.LeftColumnOffset = 50 - - ' Save - workbook.SaveAs("../../Output/Picture.xlsx") - End Using -{% endhighlight %} -{% endtabs %} diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-apply-custom-filtering-to-string-data-types-using-XlsIO.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-apply-custom-filtering-to-string-data-types-using-XlsIO.md deleted file mode 100644 index 427c13e6f..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-apply-custom-filtering-to-string-data-types-using-XlsIO.md +++ /dev/null @@ -1,80 +0,0 @@ ---- -title: Apply custom filtering to string data types using XlsIO | Syncfusion -description: Code example to apply custom filtering to string data types using Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How to apply custom filtering to string data types using XlsIO? - -The following code snippets illustrate how to apply custom filtering to string data types in C# (cross-platform and Windows-specific) and VB.NET. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/FAQ/Filtering/.NET/Custom%20Filter%20String%20Type/CustomFilterStringType/Program.cs,180" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/Input.xlsx")); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Creating an AutoFilter - worksheet.AutoFilters.FilterRange = worksheet.Range["A1:A11"]; - IAutoFilter filter = worksheet.AutoFilters[0]; - - //Specifying first condition - IAutoFilterCondition firstCondition = filter.FirstCondition; - firstCondition.ConditionOperator = ExcelFilterCondition.DoesNotContain; - firstCondition.String = "1000.00"; - - //Saving the workbook - workbook.SaveAs(Path.GetFullPath(@"Output/Output.xlsx")); -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Open("Input.xlsx"); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Creating an AutoFilter - worksheet.AutoFilters.FilterRange = worksheet.Range["A1:A11"]; - IAutoFilter filter = worksheet.AutoFilters[0]; - - //Specifying first condition - IAutoFilterCondition firstCondition = filter.FirstCondition; - firstCondition.ConditionOperator = ExcelFilterCondition.DoesNotContain; - firstCondition.String = "1000.00"; - - //Saving the workbook - workbook.SaveAs("Output.xlsx"); -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - Dim workbook As IWorkbook = application.Workbooks.Open("Sample.xlsx") - Dim sheet As IWorksheet = workbook.Worksheets(0) - - 'Creating an AutoFilter - sheet.AutoFilters.FilterRange = sheet.Range("A1:A11") - Dim filter As IAutoFilter = sheet.AutoFilters(0) - - 'Specifying first condition - Dim firstCondition As IAutoFilterCondition = filter.FirstCondition - firstCondition.ConditionOperator = ExcelFilterCondition.DoesNotContain - firstCondition.String = 1000.0 - - 'Saving the workbook - workbook.SaveAs("Output.xlsx") -End Using -{% endhighlight %} -{% endtabs %} - -A complete working example to apply custom filtering to string data types using C# is present on this GitHub page. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-apply-the-formatting-for-a-particular-column-while-importing-data-from-collection-objects.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-apply-the-formatting-for-a-particular-column-while-importing-data-from-collection-objects.md deleted file mode 100644 index 14d963da0..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-apply-the-formatting-for-a-particular-column-while-importing-data-from-collection-objects.md +++ /dev/null @@ -1,171 +0,0 @@ ---- -title: Apply formatting to a specific column when importing data | Syncfusion -description: Code example showing how to apply formatting to a specific column when importing data from collection objects using the Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How to apply formatting to a specific column while importing data? - -To apply formatting to a specific column while importing data from collection objects, use the **DisplayFormatAttribute** in the class definition, as shown in the example below. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(1); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Import the data to worksheet - IList reports = GetSalesReports(); - worksheet.ImportData(reports, 2, 1, false); - - #region Save - //Saving the workbook - workbook.SaveAs(Path.GetFullPath("Output/ImportCollectionObjects.xlsx")); - #endregion -} - -//Gets a list of sales reports -public static List GetSalesReports() -{ - List reports = new List(); - reports.Add(new Customer("Andy Bernard", 45000, 58000)); - reports.Add(new Customer("Jim Halpert", 34000, 65000)); - reports.Add(new Customer("Karen Fillippelli", 75000, 64000)); - reports.Add(new Customer("Phyllis Lapin", 56500, 33600)); - reports.Add(new Customer("Stanley Hudson", 46500, 52000)); - return reports; -} - -//Customer details -public class Customer -{ - [DisplayNameAttribute("Sales Person Name")] - public string SalesPerson - { - get; set; - } - **[DisplayFormat(DataFormatString = "$#,###.00")]** - public int SalesJanJun { get; set; } - - **[DisplayFormat(DataFormatString = "$#,###.00")]** - public int SalesJulDec { get; set; } - - public Customer(string name, int janToJun, int julToDec) - { - SalesPerson = name; - SalesJanJun = janToJun; - SalesJulDec = julToDec; - } -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(1); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Import the data to worksheet - IList reports = GetSalesReports(); - worksheet.ImportData(reports, 2, 1, false); - - #region Save - //Saving the workbook - workbook.SaveAs(Path.GetFullPath("Output/ImportCollectionObjects.xlsx")); - #endregion -} - -//Gets a list of sales reports -public static List GetSalesReports() -{ - List reports = new List(); - reports.Add(new Customer("Andy Bernard", 45000, 58000)); - reports.Add(new Customer("Jim Halpert", 34000, 65000)); - reports.Add(new Customer("Karen Fillippelli", 75000, 64000)); - reports.Add(new Customer("Phyllis Lapin", 56500, 33600)); - reports.Add(new Customer("Stanley Hudson", 46500, 52000)); - return reports; -} - -//Customer details -public class Customer -{ - [DisplayNameAttribute("Sales Person Name")] - public string SalesPerson - { - get; set; - } - **[DisplayFormat(DataFormatString = "$#,###.00")]** - public int SalesJanJun { get; set; } - - **[DisplayFormat(DataFormatString = "$#,###.00")]** - public int SalesJulDec { get; set; } - - public Customer(string name, int janToJun, int julToDec) - { - SalesPerson = name; - SalesJanJun = janToJun; - SalesJulDec = julToDec; - } -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - - Dim workbook As IWorkbook = application.Workbooks.Create(1) - Dim worksheet As IWorksheet = workbook.Worksheets(0) - - ' Import the data to worksheet - Dim reports As IList(Of Customer) = GetSalesReports() - worksheet.ImportData(reports, 2, 1, False) - - ' Saving the workbook - workbook.SaveAs(Path.GetFullPath("Output/ImportCollectionObjects.xlsx")) -End Using - -' Gets a list of sales reports -Public Function GetSalesReports() As List(Of Customer) - Dim reports As New List(Of Customer)() - reports.Add(New Customer("Andy Bernard", 45000, 58000)) - reports.Add(New Customer("Jim Halpert", 34000, 65000)) - reports.Add(New Customer("Karen Fillippelli", 75000, 64000)) - reports.Add(New Customer("Phyllis Lapin", 56500, 33600)) - reports.Add(New Customer("Stanley Hudson", 46500, 52000)) - Return reports -End Function - -' Customer details -Public Class Customer - - Public Property SalesPerson As String - - **** - Public Property SalesJanJun As Integer - - **** - Public Property SalesJulDec As Integer - - Public Sub New(name As String, janToJun As Integer, julToDec As Integer) - SalesPerson = name - SalesJanJun = janToJun - SalesJulDec = julToDec - End Sub -End Class -{% endhighlight %} -{% endtabs %} - -## See Also - -* [Collection Objects to Excel](https://help.syncfusion.com/document-processing/excel/excel-library/net/import-export/import-to-excel#collection-objects-to-excel) -* [How to import data table with its data type using template markers?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-import-data-table-with-its-data-type-using-template-markers) -* [Working with Template Markers](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-template-markers) \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-copy-the-used-range-from-one-Excel-workbook-to-another.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-copy-the-used-range-from-one-Excel-workbook-to-another.md deleted file mode 100644 index c14fddbe3..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-copy-the-used-range-from-one-Excel-workbook-to-another.md +++ /dev/null @@ -1,82 +0,0 @@ ---- -title: Copy used range in Excel | Syncfusion -description: Learn how to copy the used range from one Excel workbook to another using the Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How to copy the used range from one Excel workbook to another? - -The [UsedRange](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorksheet.html#Syncfusion_XlsIO_IWorksheet_UsedRange) of [IWorksheet](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorksheet.html) returns the contiguous range that contains data in a worksheet. By default, Excel also considers cells that have only formatting applied as part of the used range. - -The following code examples show how to copy the used range from a source workbook to a destination workbook in C# (cross-platform and Windows-specific) and VB.NET. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/FAQ/Copy%20Used%20Range/.NET/CopyUsedRange/CopyUsedRange/Program.cs,180" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook sourceWorkbook = application.Workbooks.Open(Path.GetFullPath(@"Data/Source.xlsx")); - IWorkbook destinationWorkbook = application.Workbooks.Open(Path.GetFullPath(@"Data/Destination.xlsx")); - - IWorksheet sourceWorksheet = sourceWorkbook.Worksheets["Sheet1"]; - IWorksheet destinationWorksheet = destinationWorkbook.Worksheets["Sheet1"]; - - //Get the actual used range from source sheet - IRange sourceRange = sourceWorksheet.UsedRange; - - //Copy the entire used range from source sheet to destination sheet - sourceRange.CopyTo(destinationWorksheet.Range[sourceRange.Row, sourceRange.Column]); - - //Save the destination workbook - destinationWorkbook.SaveAs(Path.GetFullPath(@"Output/Output.xlsx")); -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook sourceWorkbook = application.Workbooks.Open("Source.xlsx"); - IWorkbook destinationWorkbook = application.Workbooks.Open("Destination.xlsx"); - - IWorksheet sourceWorksheet = sourceWorkbook.Worksheets["Sheet1"]; - IWorksheet destinationWorksheet = destinationWorkbook.Worksheets["Sheet1"]; - - //Get the actual used range from source sheet - IRange sourceRange = sourceWorksheet.UsedRange; - - //Copy the entire used range from source sheet to destination sheet - sourceRange.CopyTo(destinationWorksheet.Range[sourceRange.Row, sourceRange.Column]); - - //Save the destination workbook - destinationWorkbook.SaveAs("Output.xlsx"); -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - Dim sourceWorkbook As IWorkbook = application.Workbooks.Open("Source.xlsx") - Dim destinationWorkbook As IWorkbook = application.Workbooks.Open("Destination.xlsx") - - Dim sourceWorksheet As IWorksheet = sourceWorkbook.Worksheets("Sheet1") - Dim destinationWorksheet As IWorksheet = destinationWorkbook.Worksheets("Sheet1") - - 'Get the actual used range from source sheet - Dim sourceRange As IRange = sourceWorksheet.UsedRange - - 'Copy the entire used range from source sheet to destination sheet - sourceRange.CopyTo(destinationWorksheet.Range(sourceRange.Row, sourceRange.Column)) - - 'Save the destination workbook - destinationWorkbook.SaveAs("Output.xlsx") -End Using -{% endhighlight %} -{% endtabs %} - -A complete working example to copy the used range from a source workbook to a destination workbook using C# is present on this GitHub page. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-extract-embedded-OLE-files-from-an-Excel-workbook-as-streams.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-extract-embedded-OLE-files-from-an-Excel-workbook-as-streams.md deleted file mode 100644 index db2172994..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-extract-embedded-OLE-files-from-an-Excel-workbook-as-streams.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Extract embedded OLE files from Excel as streams | Syncfusion -description: This page shows how to extract embedded OLE objects from Excel as streams using the Syncfusion .NET Excel (XlsIO) library. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How to extract embedded OLE files from an Excel workbook as streams? - -You can extract OLE objects in an Excel workbook as streams using XlsIO. The following example demonstrates how to retrieve embedded files from a worksheet. -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - //Create worksheet - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(1); - IWorksheet worksheet = workbook.Worksheets[0]; - - FileStream embedStream = new FileStream("../../../Sample.docx", FileMode.Open); - FileStream imageStream = new FileStream("../../../wordIcon.jpg", FileMode.Open); - - //Create image stream - Image image = Image.FromStream(imageStream); - - //Add ole object - IOleObject oleObject = worksheet.OleObjects.Add(embedStream, image, OleObjectType.WordDocument); - - // Get the OLE part stream. - Image image1 = Image.FromStream(worksheet.OleObjects[0].GetEmbeddedOleStream()); - MemoryStream memory = new MemoryStream(image1.ImageData); - - //Saving the workbook as stream - FileStream stream = new FileStream("ExtractedFile.xlsx", FileMode.Create, FileAccess.Write); - memory.CopyTo(stream); - workbook.SaveAs(stream); - stream.Dispose(); -} -{% endhighlight %} - -{% endtabs %} diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-get-RGB-values-of-a-cells-background-color.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-get-RGB-values-of-a-cells-background-color.md deleted file mode 100644 index 53dbcb1d7..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-get-RGB-values-of-a-cells-background-color.md +++ /dev/null @@ -1,89 +0,0 @@ ---- -title: Get RGB values of a cell's background color | Syncfusion -description: Code example to get RGB values of a cell's background color using Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How to get RGB values of a cell's background color? - -The following examples show how to get RGB values of a cell's background color in C# (cross-platform and Windows-specific) and VB.NET. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/FAQ/RGB%20Value%20for%20Cell%20Color/.NET/RGB%20Value%20for%20Cell%20Color/RGBValueCellColor/Program.cs,180" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(1); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Apply cell color - worksheet.Range["A1"].CellStyle.ColorIndex = ExcelKnownColors.Custom50; - - //Get the RGB values of the cell color - Color color = worksheet.Range["A1"].CellStyle.Color; - byte red = color.R; - byte green = color.G; - byte blue = color.B; - - //Print the RGB values - Console.WriteLine($"Red: {red}, Green: {green}, Blue: {blue}"); - - //Save the workbook - workbook.SaveAs(Path.GetFullPath("Output/Output.xlsx")); -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Create(1); - IWorksheet worksheet = workbook.Worksheets[0]; - - //Apply cell color - worksheet.Range["A1"].CellStyle.ColorIndex = ExcelKnownColors.Custom50; - - //Get the RGB values of the cell color - Color color = worksheet.Range["A1"].CellStyle.Color; - byte red = color.R; - byte green = color.G; - byte blue = color.B; - - //Print the RGB values - Console.WriteLine($"Red: {red}, Green: {green}, Blue: {blue}"); - - //Save the workbook - workbook.SaveAs("Output.xlsx"); -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - Dim workbook As IWorkbook = application.Workbooks.Create(1) - Dim worksheet As IWorksheet = workbook.Worksheets(0) - - 'Apply cell color - worksheet.Range("A1").CellStyle.ColorIndex = ExcelKnownColors.Custom50 - - 'Get the RGB values of the cell color - Dim cellColor As Color = worksheet.Range("A1").CellStyle.Color - Dim red As Byte = cellColor.R - Dim green As Byte = cellColor.G - Dim blue As Byte = cellColor.B - - 'Print the RGB values - Console.WriteLine($"Red: {red}, Green: {green}, Blue: {blue}") - - 'Save the workbook - workbook.SaveAs("Output.xlsx") -End Using -{% endhighlight %} -{% endtabs %} - -A complete working example to get RGB values of a cell's background color is available on this GitHub page. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-resolve-the-cannot-open-Pivot-table-source-file-error.md b/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-resolve-the-cannot-open-Pivot-table-source-file-error.md deleted file mode 100644 index b4c9fae10..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/how-to-resolve-the-cannot-open-Pivot-table-source-file-error.md +++ /dev/null @@ -1,105 +0,0 @@ ---- -title: Fix “Can't open PivotTable source file” error in XlsIO | Syncfusion -description: This page explains how to resolve the "Can't open Pivottable source file" error using Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# How to resolve the “Can't open Pivot table source file” error? - -Deleting the source worksheet and refreshing the PivotTable may work in the current session, but reopening the saved workbook and refreshing can trigger this error. If “Refresh data when opening the file” is enabled, Excel will not disable it automatically. This is Microsoft Excel behavior, and XlsIO follows the same behavior. - -**Recommendations:** - -* If you need to remove the worksheet that contains the PivotTable’s source data, hide the worksheet instead of deleting it. -* If the source worksheet no longer exists, disable IsRefreshOnLoad before saving the workbook. - -The following code illustrate how to disable the IsRefreshOnLoad property. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Open("Data/Sample.xlsx"); - IWorksheet pivotSheet = workbook.Worksheets[0]; - - IPivotTable pivotTable = workbook.Worksheets[1].PivotTables[0]; - PivotTableImpl pivotTableImpl = pivotTable as PivotTableImpl; - - //Disable the refreshing option - pivotTableImpl.Cache.IsRefreshOnLoad = false; - - #region Save - //Saving the workbook - workbook.SaveAs("Output/PivotTable.xlsx"); - #endregion -} -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -using (ExcelEngine excelEngine = new ExcelEngine()) -{ - IApplication application = excelEngine.Excel; - application.DefaultVersion = ExcelVersion.Xlsx; - IWorkbook workbook = application.Workbooks.Open("Data/Sample.xlsx"); - IWorksheet pivotSheet = workbook.Worksheets[0]; - - IPivotTable pivotTable = workbook.Worksheets[1].PivotTables[0]; - PivotTableImpl pivotTableImpl = pivotTable as PivotTableImpl; - - //Disable the refreshing option - pivotTableImpl.Cache.IsRefreshOnLoad = false; - - #region Save - //Saving the workbook - workbook.SaveAs("Output/PivotTable.xlsx"); - #endregion -} -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -Using excelEngine As New ExcelEngine() - Dim application As IApplication = excelEngine.Excel - application.DefaultVersion = ExcelVersion.Xlsx - - Dim workbook As IWorkbook = application.Workbooks.Open("../../Data/Sample.xlsx") - Dim pivotSheet As IWorksheet = workbook.Worksheets(0) - Dim pivotTable As IPivotTable = workbook.Worksheets(1).PivotTables(0) - Dim pivotTableImpl As PivotTableImpl = TryCast(pivotTable, PivotTableImpl) - - ' Disable the refreshing option - pivotTableImpl.Cache.IsRefreshOnLoad = False - - ' Save the workbook - workbook.SaveAs("../../Output/PivotTable.xlsx") -End Using -{% endhighlight %} -{% endtabs %} - - -The following code shows how to hide Excel worksheet. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -//Hide the worksheet -worksheet.Visibility = WorksheetVisibility.Hidden; -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -//Hide the worksheet -worksheet.Visibility = WorksheetVisibility.Hidden; -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -'Hide the worksheet -worksheet.Visibility = WorksheetVisibility.Hidden -{% endhighlight %} -{% endtabs %} - -## See Also - -* [Hide Excel Worksheets](https://help.syncfusion.com/document-processing/excel/excel-library/net/migrate-from-office-automation-to-syncfusion-xlsio/hide-excel-worksheets) -* [Working with Pivot Tables](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-pivot-tables) diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/what-are-the-naming-rules-for-named-ranges-in-Excel.md b/Document-Processing/Excel/Excel-Library/NET/faqs/what-are-the-naming-rules-for-named-ranges-in-Excel.md deleted file mode 100644 index c599c6a41..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/what-are-the-naming-rules-for-named-ranges-in-Excel.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: Naming rules for named ranges in Excel | Syncfusion -description: Learn the naming conventions for Excel named ranges in XlsIO, including allowed characters, restrictions, and length limits. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# What are the naming rules for named ranges in Excel? - -When defining a named range in Excel, the following rules apply: - -* **Start character:** Must begin with a letter (A-Z/a-z), underscore (_), or backslash (\). - -* **Allowed characters:** Can include letters, numbers, underscores (_), and periods (.). - -* **Characters not allowed:** Spaces and most special characters (e.g., ! @ # $ % ^ & *) are not permitted. - -* **No cell references:** Names cannot resemble a valid cell reference (e.g., A1, R1C1). - -* **Length limit:** Maximum of 255 characters. - -* **Case sensitivity:** Names are case-insensitive. diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-text-length-for-hyperlink-screentip-in-excel.md b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-text-length-for-hyperlink-screentip-in-excel.md deleted file mode 100644 index 27e9659ab..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-text-length-for-hyperlink-screentip-in-excel.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Hyperlink ScreenTip text limit in Excel | Syncfusion -description: This page explains the maximum supported text length for hyperlink ScreenTip text in Microsoft Excel and Syncfusion XlsIO. -platform: document-processing -control: XlsIO -documentation: UG ---- - -# What is the maximum text length for hyperlink ScreenTip in Excel? - -The maximum supported text length for hyperlink ScreenTip text in Excel is **255 characters**. Syncfusion XlsIO follows the same behavior when setting hyperlink ScreenTip text. \ No newline at end of file diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-unit-of-row-height-and-column-width-in-Excel.md b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-unit-of-row-height-and-column-width-in-Excel.md deleted file mode 100644 index 4d9be2e15..000000000 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-unit-of-row-height-and-column-width-in-Excel.md +++ /dev/null @@ -1,110 +0,0 @@ ---- -title: Unit of row height and column width in Excel | Syncfusion -description: This page explains about the default unit of measurement for row height and column width in Excel using Syncfusion .NET Excel library (XlsIO). -platform: document-processing -control: XlsIO -documentation: UG ---- - -# What is the unit of row height and column width in Excel? - -By default, XlsIO uses **points** as the unit of measurement for both row height and column width. - -Use SetColumnWidth - and SetRowHeight to set dimensions in points. - -Use GetColumnWidth and GetRowHeight to retrieve dimensions in points. - -If you need pixel values, XlsIO provides pixel based APIs: GetColumnWidthInPixels, GetRowHeightInPixels, SetColumnWidthInPixels, SetRowHeightInPixels. - -{% tabs %} -{% highlight c# tabtitle="C# [Cross-platform]" %} -//Set column width in points -sheet.SetColumnWidth(1, 20); - -//Get column width in points -var widthPoints = sheet.GetColumnWidth(1); -Console.WriteLine("Column width in points: " + widthPoints); - -//Set column width in pixels -sheet.SetColumnWidthInPixels(1, 160); - -//Get column width in pixels -var widthPixels = sheet.GetColumnWidthInPixels(1); -Console.WriteLine("Column width in pixels: " + widthPixels); - -//Set row height in points -sheet.SetRowHeight(1, 15); - -//Get row height in points -var heightPoints = sheet.GetRowHeight(1); -Console.WriteLine("Row height in points: " + heightPoints); - -//Set row height in pixels -sheet.SetRowHeightInPixels(1, 40); - -//Get row height in pixels -var heightPixels = sheet.GetRowHeightInPixels(1); -Console.WriteLine("Row height in pixels: " + heightPixels); -{% endhighlight %} - -{% highlight c# tabtitle="C# [Windows-specific]" %} -//Set column width in points -sheet.SetColumnWidth(1, 20); - -//Get column width in points -var widthPoints = sheet.GetColumnWidth(1); -Console.WriteLine("Column width in points: " + widthPoints); - -//Set column width in pixels -sheet.SetColumnWidthInPixels(1, 160); - -//Get column width in pixels -var widthPixels = sheet.GetColumnWidthInPixels(1); -Console.WriteLine("Column width in pixels: " + widthPixels); - -//Set row height in points -sheet.SetRowHeight(1, 15); - -//Get row height in points -var heightPoints = sheet.GetRowHeight(1); -Console.WriteLine("Row height in points: " + heightPoints); - -//Set row height in pixels -sheet.SetRowHeightInPixels(1, 40); - -//Get row height in pixels -var heightPixels = sheet.GetRowHeightInPixels(1); -Console.WriteLine("Row height in pixels: " + heightPixels); -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} -'Set column width in points -sheet.SetColumnWidth(1, 20) - -'Get column width in points -Dim widthPoints As Integer = sheet.GetColumnWidth(1) -Console.WriteLine("Column width in points: " & widthPoints) - -'Set column width in pixels -sheet.SetColumnWidthInPixels(1, 160) - -'Get column width in pixels -Dim widthPixels As Integer = sheet.GetColumnWidthInPixels(1) -Console.WriteLine("Column width in pixels: " & widthPixels) - -'Set row height in points -sheet.SetRowHeight(1, 15) - -'Get row height in points -Dim heightPoints As Integer = sheet.GetRowHeight(1) -Console.WriteLine("Row height in points: " & heightPoints) - -'Set row height in pixels -sheet.SetRowHeightInPixels(1, 40) - -'Get row height in pixels -Dim heightPixels As Integer = sheet.GetRowHeightInPixels(1) -Console.WriteLine("Row height in pixels: " & heightPixels) -{% endhighlight %} -{% endtabs %} \ No newline at end of file diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Performance-Metrics.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Performance-Metrics.md deleted file mode 100644 index 5b30714ca..000000000 --- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/Performance-Metrics.md +++ /dev/null @@ -1,86 +0,0 @@ ---- -title: Performance Metrics of Syncfusion HTML-to-PDF Conversion -description: This section provides a detailed overview of the performance metrics and capabilities of the HTML-to-PDF conversion library. -platform: document-processing -control: PDF -documentation: UG ---- - -# HTML to PDF Performance Benchmarks - -The Syncfusion® [HTML to PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library/html-to-pdf) delivers high-performance APIs to convert web content into PDF documents programmatically. This performance benchmark report highlights the speed and efficiency of HTML-to-PDF conversion, showcasing how the library manages large-scale document rendering in real-world scenarios. - -## Environment Details - -The following system configurations were used for benchmarking: - -OS Edition : Windows 11 Enterprise -Version : 22H2 -Processor : 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz 2.42 GHz -Installed RAM : 20.0 GB (19.7 GB usable) -System type : 64-bit operating system, x64-based processor - -## Example Application - -The benchmark details were obtained using the [Syncfusion.HtmlToPdfConverter.Net.Windows](https://www.nuget.org/packages/Syncfusion.HtmlToPdfConverter.Net.Windows) package. You can refer to the following sample, as well as the input and output files used: - -Input HTML files : [Input HTML files](https://github.com/SyncfusionExamples/html-to-pdf-csharp-examples/tree/master/Performance_Testing/Syncfusion_HTMLtoPDF/wwwroot/Data) - -Output PDF files : [Output document](https://www.syncfusion.com/downloads/support/directtrac/general/ze/Output-924807763.zip) - -## Results - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Input Page countConversion time - -(Avg value of 5 conversions) -Process Memory and CPU usage -
10+ Pages2.78 seconds -Memory usage: 318 MB - -CPU usage: 10%
100+ pages3.65 secondsMemory usage: 367 MB - -CPU usage: 14%
1000+ pages6.72 secondsMemory usage: 813 MB - -CPU usage: 27%
10 documents with 100+ pages in a loop30.52 seconds -Memory usage: 663 MB - -CPU usage: 15%
10 documents with 1000+ pages in a loop1 minute 10 seconds -Memory usage: 2.2 GB - -CPU usage: 64%
- -N> The performance metrics were recorded on a freshly configured machine. Speed and memory usage may vary if the machine is running other processes. Additionally, performance can be affected by: -N> * External resources loaded in the HTML (such as images, scripts, and styles) -N> * Network speed for online URL conversions -N> * Hardware resources (CPU and memory) - -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/html-to-pdf-csharp-examples/tree/master/Performance_Testing/Syncfusion_HTMLtoPDF). \ No newline at end of file diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/features.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/features.md index ebf3a7b0a..3ce65618b 100644 --- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/features.md +++ b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/features.md @@ -807,96 +807,6 @@ padding-left: 5px; You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/Create-custom-style-TOC-when-converting-HTML-to-PDF). -## Exclude cover page from TOC - -This code snippet shows how to configure the Table of Contents (TOC) to skip the cover page by setting the starting page number. In this example, the cover page is a single page, so the TOC begins at page 1. For documents with multiple cover pages, adjust the starting page number as needed. - -{% tabs %} - -{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/PDF-Examples/master/HTML%20to%20PDF/Blink/Skip-cover-page-in-TOC-page-numbering/.NET/Skip-cover-page-in-TOC-page-numbering/Program.cs, 300" %} - -using Syncfusion.Drawing; -using Syncfusion.HtmlConverter; -using Syncfusion.Pdf; - -// Create an instance of HTML-to-PDF converter -HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter(); -// Configure Blink converter settings -BlinkConverterSettings blinkConverterSettings = new BlinkConverterSettings() -{ - ViewPortSize = new Size(1280, 0), // Set viewport width for rendering - EnableToc = true, // Enable Table of Contents (TOC) -}; -// Set TOC starting page number to skip the cover page -blinkConverterSettings.Toc.StartingPageNumber = 1; -// Apply the settings to the converter -htmlConverter.ConverterSettings = blinkConverterSettings; -// Read the main HTML content and convert it to PDF -string inputhtml = File.ReadAllText("input.html"); -PdfDocument document = htmlConverter.Convert(inputhtml, ""); -//Create cover page and insert to the 0th index. -// Apply scaling settings for the cover page -htmlConverter.ConverterSettings = new BlinkConverterSettings() -{ - Scale = 1.5f -}; -// Convert the cover page HTML to PDF -string coverimage = File.ReadAllText("coverpage.html"); -PdfDocument coverPage = htmlConverter.Convert(coverimage, ""); -// Insert the cover page at the beginning of the main document -document.Pages.Insert(0, coverPage.Pages[0]); -// Save the PDF document -document.Save("Output.pdf"); -//Dispose the document -coverPage.Close(true); -document.Close(true); -htmlConverter.Close(); - -{% endhighlight %} - -{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %} - -Imports Syncfusion.Drawing -Imports Syncfusion.HtmlConverter -Imports Syncfusion.Pdf - -' Create an instance of HTML-to-PDF converter -Dim htmlConverter As New HtmlToPdfConverter() -' Configure Blink converter settings -Dim blinkConverterSettings As New BlinkConverterSettings() With { - .ViewPortSize = New Size(1280, 0), ' Set viewport width for rendering - .EnableToc = True ' Enable Table of Contents (TOC) -} -' Set TOC starting page number to skip the cover page -blinkConverterSettings.Toc.StartingPageNumber = 1 -' Apply the settings to the converter -htmlConverter.ConverterSettings = blinkConverterSettings -' Read the main HTML content and convert it to PDF -Dim inputhtml As String = File.ReadAllText("input.html") -Dim document As PdfDocument = htmlConverter.Convert(inputhtml, "") -' Create cover page and insert to the 0th index. -' Apply scaling settings for the cover page -htmlConverter.ConverterSettings = New BlinkConverterSettings() With { - .Scale = 1.5F -} -' Convert the cover page HTML to PDF -Dim coverimage As String = File.ReadAllText("coverpage.html") -Dim coverPage As PdfDocument = htmlConverter.Convert(coverimage, "") -' Insert the cover page at the beginning of the main document -document.Pages.Insert(0, coverPage.Pages(0)) -' Save the PDF document -document.Save("Output.pdf") -' Dispose the documents -coverPage.Close(True) -document.Close(True) -htmlConverter.Close() - -{% endhighlight %} - -{% endtabs %} - -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/HTML%20to%20PDF/Blink/Skip-cover-page-in-TOC-page-numbering/.NET). - ## Media Type The Blink HTML Converter allows selection of media type while converting HTML to PDF. Blink rendering engine supports Screen and Print media types. Refer to the following code snippet to select Print [MediaType](https://help.syncfusion.com/cr/document-processing/Syncfusion.HtmlConverter.BlinkConverterSettings.html#Syncfusion_HtmlConverter_BlinkConverterSettings_MediaType). diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md index cb89948c2..5276d8aa1 100644 --- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md +++ b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md @@ -1043,6 +1043,7 @@ Blink binaries (Version 109.0.5414.75), + ## There was an error opening this document. This file is already open or in use by another application. @@ -1093,6 +1094,90 @@ fileStream.Dispose();
+## HTML to PDF Performance Benchmarks: + +We have prepared the following benchmark details for converting HTML to PDF, using the specified machine configuration and input HTML files: + +

Environment Details:

+ + +OS Edition : Windows 11 Enterprise + +Version : 22H2 + +Processor : 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz 2.42 GHz + +Installed RAM : 20.0 GB (19.7 GB usable) + +System type : 64-bit operating system, x64-based processor + + +

Example Application:

+ +The benchmark details were obtained using the [Syncfusion.HtmlToPdfConverter.Net.Windows](https://www.nuget.org/packages/Syncfusion.HtmlToPdfConverter.Net.Windows) package. You can refer to the following sample, as well as the input and output files used: + +Input HTML files : https://github.com/SyncfusionExamples/html_to_pdf_conversion/tree/main/Performance_Testing/Syncfusion_HTMLtoPDF/wwwroot/Data + +Output PDF files : https://www.syncfusion.com/downloads/support/directtrac/general/ze/Output-924807763.zip + +

Results:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Input Page countConversion time + +(Avg value of 5 conversions) +Process Memory and CPU usage +
10+ Pages2.78 seconds +Memory usage: 318 MB + +CPU usage: 10%
100+ pages3.65 secondsMemory usage: 367 MB + +CPU usage: 14%
1000+ pages6.72 secondsMemory usage: 813 MB + +CPU usage: 27%
10 documents with 100+ pages in a loop30.52 seconds +Memory usage: 663 MB + +CPU usage: 15%
10 documents with 1000+ pages in a loop1 minute 10 seconds +Memory usage: 2.2 GB + +CPU usage: 64%
+ +N> The performance metrics were recorded on a freshly configured machine. Speed and memory usage may vary if the machine is running other processes. Additionally, performance can be affected by: + +N> * External resources loaded in the HTML (such as images, scripts, and styles) +N> * Network speed for online URL conversions +N> * Hardware resources (CPU and memory) + +You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/html-to-pdf-csharp-examples/tree/master/Performance_Testing/Syncfusion_HTMLtoPDF). + ## Custom fonts are not rendered in Azure App Service and Function Linux using Blink. diff --git a/Document-Processing/PDF/PDF-Library/NET/Performance-Metrics.md b/Document-Processing/PDF/PDF-Library/NET/Performance-Metrics.md deleted file mode 100644 index 0d66e5c4e..000000000 --- a/Document-Processing/PDF/PDF-Library/NET/Performance-Metrics.md +++ /dev/null @@ -1,173 +0,0 @@ ---- -title: Performance Metrics of the Syncfusion PDF Library -description: This section provides a detailed overview of the performance metrics and capabilities of the PDF processing library. -platform: document-processing -control: PDF -documentation: UG ---- - -# Performance Metrics in PDF Library - -The Syncfusion® [.NET PDF library](https://www.syncfusion.com/document-sdk/net-pdf-library) provides high-performance APIs to create, read, edit, and secure PDF documents programmatically. This performance benchmark report highlights the speed and efficiency of key operations, demonstrating how PDF library handles large-scale document processing in real-world scenarios. - -## Environment Details - -The following system configurations were used for benchmarking: - -* Operating System: Windows 10 -* Processor: AMD Ryzen 7 5800HS with Radeon Graphics 3.20 GHz -* RAM: 16GB -* .NET Version: .NET 10.0 -* Syncfusion® Version: [Syncfusion.Pdf.Net.Core 31.2.12](https://www.nuget.org/packages/Syncfusion.Pdf.Net.Core/31.2.12) - -## Create document - -The table below illustrates the performance of PDF document creation. - -
- - - - - - - - - - - - - - - - - - - - -
PagesSyncfusion® Time (sec)
10.17 seconds
1000.79 seconds
5001.16 seconds
10001.68 seconds
- -A complete working sample used for this performance evaluation is available for download on [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Performance%20Metrics/.NET/Document_creation). - -## Open and save PDF document - -The table below illustrates the performance of open and save operations when working with PDF documents. - - - - - - - - - - - - - - - - - -
PagesInput PDF filesSyncfusion® Time (sec)
64PDF_Succinctly.pdf0.06 seconds
132JavaScript_Succinctly.pdf0.42 seconds
- -A complete working sample used for this performance evaluation is available for download on [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Performance%20Metrics/.NET/Open-and-Save-document). - -## Apply Watermark - -The table below illustrates the performance of watermark application operations in PDF documents. - - - - - - - - - - - - - - - - - -
PagesInput PDF filesSyncfusion® Time (sec)
64PDF_Succinctly.pdf0.15 seconds
132JavaScript_Succinctly.pdf0.66 seconds
- -A complete working sample used for this performance evaluation is available for download on [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Performance%20Metrics/.NET/Apply-watermark). - -## Merge PDF document - -The table below illustrates the performance of merge operations on PDF documents. - - - - - - - - - - - - - - - - - -
PagesInput PDF filesSyncfusion® Time (sec)
64PDF_Succinctly.pdf0.96 seconds
132JavaScript_Succinctly.pdf0.96 seconds
- -A complete working sample used for this performance evaluation is available for download on [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Performance%20Metrics/.NET/Merge-Documents). - -## Split PDF document - -The table below illustrates the performance of split operations on PDF documents. - - - - - - - - - - - - - - - - - -
PagesInput PDF filesSyncfusion® Time (sec)
64PDF_Succinctly.pdf0.52 seconds
132JavaScript_Succinctly.pdf1.37 seconds
- -A complete working sample used for this performance evaluation is available for download on [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Performance%20Metrics/.NET/Split-PDF). - -## Compress PDF - -The table below illustrates the performance of compression operations applied to PDF documents. To compress an existing PDF document in .NET, you should add the [Syncfusion.Pdf.Imaging.NET](https://www.nuget.org/packages/Syncfusion.Pdf.Imaging.NET/31.2.12) package. - - - - - - - - - - - - - - - - - -
PagesInput PDF filesSyncfusion® Time (sec)
64PDF_Succinctly.pdf12.28 seconds
132JavaScript_Succinctly.pdf8.39 seconds
- -A complete working sample used for this performance evaluation is available for download on [GitHub](https://github.com/SyncfusionExamples/PDF-Examples/tree/master/Performance%20Metrics/.NET/Compress-pdf). - -N> Compression efficiency varies based on the type of content in the input PDF document. -N> Benchmarks were measured on a freshly configured system. Performance results such as speed and memory usage may differ when additional processes are running on the machine. \ No newline at end of file diff --git a/Document-Processing/PDF/PDF-Library/NET/Working-with-Layers.md b/Document-Processing/PDF/PDF-Library/NET/Working-with-Layers.md index 5d1dc2b1b..98e5eb3c2 100644 --- a/Document-Processing/PDF/PDF-Library/NET/Working-with-Layers.md +++ b/Document-Processing/PDF/PDF-Library/NET/Working-with-Layers.md @@ -12,9 +12,6 @@ Layers, also known as Option Content refers to sections of content in a PDF docu Essential® PDF provides support to create, add and merge the layers into PDF document. -Check the following video to learn how to work with PDF layers using the .NET PDF Library. -{% youtube "https://youtu.be/xvQ7yM0Pddk?si=T8guG9seZNX09pFb" %} - ## Adding Layers in a PDF document Essential® PDF allows the users to create a layer in a PDF page using [PdfPageLayer](https://help.syncfusion.com/cr/document-processing/Syncfusion.Pdf.PdfPageLayer.html) class. The below code example illustrates how to add the multiple layers in a new PDF document. diff --git a/Document-Processing/PDF/PDF-Viewer/maui/Getting-Started.md b/Document-Processing/PDF/PDF-Viewer/maui/Getting-Started.md index adc06c5ba..132b0fd29 100644 --- a/Document-Processing/PDF/PDF-Viewer/maui/Getting-Started.md +++ b/Document-Processing/PDF/PDF-Viewer/maui/Getting-Started.md @@ -463,4 +463,4 @@ Open the `MainPage.xaml` file and follow the steps below. The **Getting Started** example project for the .NET MAUI PDF Viewer can be downloaded [here](https://github.com/SyncfusionExamples/maui-pdf-viewer-examples).  -N> You can refer to our [.NET MAUI PDF Viewer](https://www.syncfusion.com/maui-controls/maui-pdf-viewer) feature tour page for its groundbreaking feature representations. You can also explore our [.NET MAUI PDF Viewer Example](https://github.com/syncfusion/pdf-viewer-sdk-net-maui-demos/tree/master/PdfViewer) that shows you how to render the PDF Viewer in .NET MAUI. +N> You can refer to our [.NET MAUI PDF Viewer](https://www.syncfusion.com/maui-controls/maui-pdf-viewer) feature tour page for its groundbreaking feature representations. You can also explore our [.NET MAUI PDF Viewer Example](https://github.com/syncfusion/maui-demos/tree/master/MAUI/PdfViewer) that shows you how to render the PDF Viewer in .NET MAUI. diff --git a/Document-Processing/PDF/PDF-Viewer/maui/Open-a-Document.md b/Document-Processing/PDF/PDF-Viewer/maui/Open-a-Document.md index 65db81fee..e2941fc2c 100644 --- a/Document-Processing/PDF/PDF-Viewer/maui/Open-a-Document.md +++ b/Document-Processing/PDF/PDF-Viewer/maui/Open-a-Document.md @@ -79,21 +79,6 @@ The .NET MAUI PDF Viewer does not currently support annotations comparable to Xa N> * All the [LoadDocument](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_LoadDocument_System_IO_Stream_System_String_System_Nullable_Syncfusion_Maui_PdfViewer_FlattenOptions__) methods accept the flatten options parameter. N> * Refer to this [section](https://help.syncfusion.com/maui/pdf-viewer/migration#upcoming-features) for the upcoming annotation features in the [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html). -## Optimizing document loading on Android - -When your application handles large images, complex graphics, or memory-intensive operations, the default heap size may not be sufficient, leading to performance issues or crashes. Enabling a larger heap allows the app to allocate more memory, ensuring smooth performance and preventing out-of-memory errors in such scenarios. You can enable this by adding the following highlighted attribute in your AndroidManifest.xml under the tag. - -{% tabs %} -{% highlight xml hl_lines="4" %} - - - - ... - -{% endhighlight %} -{% endtabs %} - ## Check other PDF opening options * [Open a document from local storage](https://help.syncfusion.com/maui/pdf-viewer/open-a-document-from-local-storage) diff --git a/Document-Processing/PDF/PDF-Viewer/maui/Text-Search.md b/Document-Processing/PDF/PDF-Viewer/maui/Text-Search.md index 3350d7520..d722d2d20 100644 --- a/Document-Processing/PDF/PDF-Viewer/maui/Text-Search.md +++ b/Document-Processing/PDF/PDF-Viewer/maui/Text-Search.md @@ -11,10 +11,6 @@ documentation: ug The [SfPdfViewer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html) allows you to search for text in a PDF document and navigate to all its occurrences. -You can also watch the video tutorial below to learn about text search. - - - ## Initiate a text search The [SearchTextAsync](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.SfPdfViewer.html#Syncfusion_Maui_PdfViewer_SfPdfViewer_SearchTextAsync_System_String_TextSearchOptions_System_Threading_CancellationTokenSource_) method asynchronously searches the specified text throughout the PDF document and highlights each occurrence (match). To start the search, you need to call the method in a button click by passing the text to be searched as a parameter, as shown in the following example: @@ -162,7 +158,7 @@ private void PdfTextSearchProgress(object sender, TextSearchProgressEventArgs e) {% endhighlight %} {% endtabs %} -### Canceling search progress +### Cancelling search progress The [Clear](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.TextSearchResult.html#Syncfusion_Maui_PdfViewer_TextSearchResult_Clear) method of the [TextSearchResult](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.PdfViewer.TextSearchResult.html) can be used to cancel the text search progress that does not need to be continued. For example, under the following scenarios, cancellation may be necessary. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core.md index d669f2076..a5f93e9f8 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-Core.md @@ -323,4 +323,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-MVC.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-MVC.md index 8e441a472..84d5db0c6 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-MVC.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-NET-MVC.md @@ -239,3 +239,5 @@ By executing the program, you will get the **image** as follows. {% endtabcontents %} Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. + +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetmvc/PowerPoint/PPTXToImage#/material3) in ASP.NET MVC. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-Net.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-Net.md index 3ad6aa92c..8bd148ba1 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-Net.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-ASP-Net.md @@ -97,4 +97,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Elastic-Beanstalk.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Elastic-Beanstalk.md index d054c2e43..ac5fbfdb0 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Elastic-Beanstalk.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Elastic-Beanstalk.md @@ -132,4 +132,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Lambda.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Lambda.md index 3cb40cdd2..352074285 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Lambda.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Lambda.md @@ -190,4 +190,4 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Linux-EC2.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Linux-EC2.md index 5f926bf28..f4b74b2f5 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Linux-EC2.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-AWS-Linux-EC2.md @@ -384,4 +384,4 @@ You can download samples demonstrating how to convert a PowerPoint presentation Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-App-Service-Linux.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-App-Service-Linux.md index 95d2d067f..8b5c32b6c 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-App-Service-Linux.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-App-Service-Linux.md @@ -199,4 +199,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-App-Service-Windows.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-App-Service-Windows.md index 02617fc67..0448389d7 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-App-Service-Windows.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-App-Service-Windows.md @@ -193,4 +193,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-Functions-v1.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-Functions-v1.md index 41e26fbfc..de9f552ee 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-Functions-v1.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-Functions-v1.md @@ -144,5 +144,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-Functions-v4.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-Functions-v4.md index b1e3ecd29..aa194c126 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-Functions-v4.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Azure-Functions-v4.md @@ -149,5 +149,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Blazor.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Blazor.md index 6002c9ad6..0e3b4e780 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Blazor.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Blazor.md @@ -1285,4 +1285,4 @@ N> To convert PPTX to Image, it is necessary to access the font stream internall Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/blazor) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Google-App-Engine.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Google-App-Engine.md index d40eb8a9f..2c125f700 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Google-App-Engine.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Google-App-Engine.md @@ -255,4 +255,4 @@ By executing the program, you will get the **image** as follows. The output will Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Linux.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Linux.md index 4249196df..78d189e2e 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Linux.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Linux.md @@ -223,4 +223,4 @@ By executing the program, you will get the **image** as follows. The output will Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-MAUI.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-MAUI.md index a5e4e564a..f6466dc0e 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-MAUI.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-MAUI.md @@ -181,7 +181,7 @@ Refer the below helper files and add them into the mentioned project. These help {{'[PreviewControllerDS.cs](https://github.com/SyncfusionExamples/PowerPoint-Examples/blob/master/PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/.NET-MAUI/Convert-PowerPoint-to-Image/Platforms/iOS/PreviewControllerDS.cs)'| markdownify }}
{{'[QLPreviewItemFileSystem.cs](https://github.com/SyncfusionExamples/PowerPoint-Examples/blob/master/PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/.NET-MAUI/Convert-PowerPoint-to-Image/Platforms/iOS/QLPreviewItemFileSystem.cs)'| markdownify }} - Helper classes for viewing the PowerPoint Presentation in iOS device + Helper classes for viewing the PowerPoint Presenatation in iOS device @@ -361,7 +361,7 @@ Refer the below helper files and add them into the mentioned project. These help {{'[PreviewControllerDS.cs](https://github.com/SyncfusionExamples/PowerPoint-Examples/blob/master/PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/.NET-MAUI/Convert-PowerPoint-to-Image/Platforms/iOS/PreviewControllerDS.cs)'| markdownify }}
{{'[QLPreviewItemFileSystem.cs](https://github.com/SyncfusionExamples/PowerPoint-Examples/blob/master/PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/.NET-MAUI/Convert-PowerPoint-to-Image/Platforms/iOS/QLPreviewItemFileSystem.cs)'| markdownify }} - Helper classes for viewing the PowerPoint Presentation in iOS device + Helper classes for viewing the PowerPoint Presenatation in iOS device @@ -552,7 +552,7 @@ Refer the below helper files and add them into the mentioned project. These help {{'[PreviewControllerDS.cs](https://github.com/SyncfusionExamples/PowerPoint-Examples/blob/master/PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/.NET-MAUI/Convert-PowerPoint-to-Image/Platforms/iOS/PreviewControllerDS.cs)'| markdownify }}
{{'[QLPreviewItemFileSystem.cs](https://github.com/SyncfusionExamples/PowerPoint-Examples/blob/master/PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/.NET-MAUI/Convert-PowerPoint-to-Image/Platforms/iOS/QLPreviewItemFileSystem.cs)'| markdownify }} - Helper classes for viewing the PowerPoint Presentation in iOS device + Helper classes for viewing the PowerPoint Presenatation in iOS device @@ -563,4 +563,4 @@ Refer the below helper files and add them into the mentioned project. These help Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/maui/powerpoint-library) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Mac.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Mac.md index e1d2342b9..b4fe6d395 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Mac.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Mac.md @@ -279,4 +279,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-UWP.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-UWP.md index fa20444f7..ecd0006c7 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-UWP.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-UWP.md @@ -91,5 +91,5 @@ By executing the program, you will get the **Image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/uwp) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. - An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. + An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-WPF.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-WPF.md index 0215e5a3a..e9bbcab1b 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-WPF.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-WPF.md @@ -220,4 +220,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-WinUI.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-WinUI.md index 14dfaff37..af2baa019 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-WinUI.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-WinUI.md @@ -160,4 +160,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/winui) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Windows-Forms.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Windows-Forms.md index 71454aa73..f1e05aa76 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Windows-Forms.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Windows-Forms.md @@ -222,4 +222,4 @@ By executing the program, you will get the **Image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Xamarin.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Xamarin.md index c4767b918..66b4d0d9a 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Xamarin.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Convert-PowerPoint-to-Image-in-Xamarin.md @@ -143,7 +143,7 @@ Refer the below helper files and add them into the mentioned project. These help {{'[PreviewControllerDS.cs](https://github.com/SyncfusionExamples/PowerPoint-Examples/blob/master/PPTX-to-Image-conversion/Convert-PowerPoint-presentation-to-Image/Xamarin/Convert-PowerPoint-Presentation-to-Image/Convert-PowerPoint-Presentation-to-Image.iOS/PreviewControllerDS.cs)'| markdownify }} - Helper class for viewing the PowerPoint Presentation in iOS device + Helper class for viewing the PowerPoint Presenatation in iOS device @@ -178,5 +178,5 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/xamarin) to explore the rich set of Syncfusion PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to image](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to image](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/PPTXtoImage-in-UWP.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/PPTXtoImage-in-UWP.md index 581e04e57..75fb61c28 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/PPTXtoImage-in-UWP.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/PPTXtoImage-in-UWP.md @@ -5,7 +5,7 @@ platform: document-processing control: PowerPoint documentation: UG --- -# Convert PowerPoint slides to Image in UWP +# Convert PowerPoint to Image in UWP PowerPoint slides can be converted to images in UWP by using Essential® Presentation library. The following assemblies are required in the UWP application to convert the slides as images. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Presentation-to-image.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Presentation-to-image.md index 2e2038e6f..8c2dba948 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Presentation-to-image.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/NET/Presentation-to-image.md @@ -6,7 +6,7 @@ control: Presentation documentation: UG --- -# Convert PowerPoint to Image using Syncfusion® PowerPoint Library +# Convert PowerPoint to Image using Syncfusion® PowerPoint library Syncfusion® PowerPoint library (Presentation) allows you to convert PowerPoint Presentation document to Image within a few lines of code in .NET applications and also it does not require Microsoft PowerPoint application to be installed in the machine. Using this, you can create an input PowerPoint Presentation document from scratch or load an existing PowerPoint Presentation document and then easily convert to Image. @@ -395,7 +395,7 @@ During PowerPoint to Image conversions, if a glyph of the input text is unavaila ## Online Demo -* Explore how to convert the PowerPoint presentation to an image using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind). +* Explore how to convert the PowerPoint presentation to an image using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/pptxtoimage#/bootstrap5). ## See Also diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/overview.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/overview.md index 6c72c0cd9..981b650c6 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/overview.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-Image/overview.md @@ -6,7 +6,7 @@ control: Presentation documentation: UG --- -# Convert PowerPoint to Image using Syncfusion® PowerPoint Library +# Convert PowerPoint to Image using Syncfusion® PowerPoint library Syncfusion® PowerPoint library (Presentation) allows you to convert PowerPoint Presentation document to Image within a few lines of code in .NET applications and also it does not require Microsoft PowerPoint application to be installed in the machine. Using this, you can create an input PowerPoint Presentation document from scratch or load an existing PowerPoint Presentation document and then easily convert to Image. @@ -395,7 +395,7 @@ During PowerPoint to Image conversions, if a glyph of the input text is unavaila ## Online Demo -* Explore how to convert the PowerPoint presentation to an image using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/pptxtoimage#/tailwind). +* Explore how to convert the PowerPoint presentation to an image using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/pptxtoimage#/bootstrap5). ## See Also diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-NET-Core.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-NET-Core.md index ad33290dc..377282833 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-NET-Core.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-NET-Core.md @@ -334,4 +334,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-NET-MVC.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-NET-MVC.md index c1df20c0d..d56627a8b 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-NET-MVC.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-NET-MVC.md @@ -224,4 +224,6 @@ By executing the program, you will get the **PDF** as follows. {% endtabcontents %} -Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. \ No newline at end of file +Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. + +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetmvc/PowerPoint/PPTXToPdf#/material3) in ASP.NET MVC \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-Net.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-Net.md index 7fdfc0e38..24131c0bd 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-Net.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-ASP-Net.md @@ -102,4 +102,4 @@ By executing the program, you will get the **PDF** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-AWS-Elastic-Beanstalk.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-AWS-Elastic-Beanstalk.md index 5379dee3f..31d4beda6 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-AWS-Elastic-Beanstalk.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-AWS-Elastic-Beanstalk.md @@ -137,4 +137,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-AWS-Lambda.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-AWS-Lambda.md index ec0ba6140..e6ca54fb2 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-AWS-Lambda.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-AWS-Lambda.md @@ -195,5 +195,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-App-Service-Linux.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-App-Service-Linux.md index 41b7a3eda..7e5b827de 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-App-Service-Linux.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-App-Service-Linux.md @@ -203,4 +203,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-App-Service-Windows.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-App-Service-Windows.md index db675a396..3cc00ff84 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-App-Service-Windows.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-App-Service-Windows.md @@ -196,4 +196,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-Functions-v1.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-Functions-v1.md index 0dc1d3345..2d2a11d86 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-Functions-v1.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-Functions-v1.md @@ -145,5 +145,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-Functions-v4.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-Functions-v4.md index de40cabe3..1fcd0aefe 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-Functions-v4.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Azure-Functions-v4.md @@ -147,5 +147,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Blazor.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Blazor.md index 1bb8068ae..2d3083bc4 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Blazor.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Blazor.md @@ -1301,3 +1301,4 @@ Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. + diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Google-App-Engine.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Google-App-Engine.md index 1e69e0f89..36f6e93ec 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Google-App-Engine.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Google-App-Engine.md @@ -258,4 +258,4 @@ By executing the program, you will get the **PDF document** as follows. The outp Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Linux.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Linux.md index 4aa9e4f91..c8cf33abc 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Linux.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Linux.md @@ -226,4 +226,4 @@ By executing the program, you will get the **PDF** as follows. The output will b Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-MAUI.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-MAUI.md index bdbf6ae10..41520de2c 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-MAUI.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-MAUI.md @@ -573,4 +573,4 @@ Refer the below helper files and add them into the mentioned project. These help Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/maui) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Mac.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Mac.md index 19cff099d..fa4a8d399 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Mac.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Mac.md @@ -280,4 +280,4 @@ By executing the program, you will get the **PDF** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-UWP.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-UWP.md index abf45f637..619c1daaf 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-UWP.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-UWP.md @@ -135,5 +135,5 @@ By executing the program, you will get the **PDF** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/uwp) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-WPF.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-WPF.md index 1913da908..ec8136b64 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-WPF.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-WPF.md @@ -230,4 +230,4 @@ By executing the program, you will get the **PDF** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-WinUI.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-WinUI.md index 0283dab10..9c1ea1da7 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-WinUI.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-WinUI.md @@ -161,4 +161,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/winui) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Windows-Forms.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Windows-Forms.md index acac408a9..6ec37e5ec 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Windows-Forms.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Windows-Forms.md @@ -234,4 +234,4 @@ By executing the program, you will get the **PDF** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Xamarin.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Xamarin.md index d80c79330..3ca60b034 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Xamarin.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Convert-PowerPoint-to-PDF-in-Xamarin.md @@ -179,5 +179,5 @@ By executing the program, you will get the **PDF** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/xamarin) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [convert PowerPoint Presentation to PDF](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert PowerPoint Presentation to PDF](https://ej2.syncfusion.com/aspnetcore/PowerPoint/PPTXToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Presentation-to-PDF.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Presentation-to-PDF.md index e4e9c158b..a36269aa8 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Presentation-to-PDF.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/NET/Presentation-to-PDF.md @@ -753,9 +753,9 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to convert a PowerPoint presentation to PDF using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind). -* See how to convert a PowerPoint presentation to PDF/UA using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/pptxtopdfua#/tailwind). -* See how to convert a PowerPoint presentation to PDF/A using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/pptxtopdfa#/tailwind). +* Explore how to convert a PowerPoint presentation to PDF using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/pptxtopdf#/bootstrap5). +* See how to convert a PowerPoint presentation to PDF/UA using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/pptxtopdfua#/bootstrap5). +* See how to convert a PowerPoint presentation to PDF/A using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/pptxtopdfa#/bootstrap5). ## See Also diff --git a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/overview.md b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/overview.md index 8d573c9ab..3d202fe58 100644 --- a/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/overview.md +++ b/Document-Processing/PowerPoint/Conversions/PowerPoint-To-PDF/overview.md @@ -681,9 +681,9 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to convert a PowerPoint presentation to PDF using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/pptxtopdf#/tailwind). -* See how to convert a PowerPoint presentation to PDF/UA using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/pptxtopdfua#/tailwind). -* See how to convert a PowerPoint presentation to PDF/A using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/pptxtopdfa#/tailwind). +* Explore how to convert a PowerPoint presentation to PDF using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/pptxtopdf#/bootstrap5). +* See how to convert a PowerPoint presentation to PDF/UA using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/pptxtopdfua#/bootstrap5). +* See how to convert a PowerPoint presentation to PDF/A using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/pptxtopdfa#/bootstrap5). ## See Also diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Azure-Images/App-Service-Windows/Nuget-Package-Create-PowerPoint-Presentation.png b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Azure-Images/App-Service-Windows/Nuget-Package-Create-PowerPoint-Presentation.png index 8b6b9a0d4..ab682dbc6 100644 Binary files a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Azure-Images/App-Service-Windows/Nuget-Package-Create-PowerPoint-Presentation.png and b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Azure-Images/App-Service-Windows/Nuget-Package-Create-PowerPoint-Presentation.png differ diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Comments.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Comments.md index f6dd62c6a..22425aabf 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Comments.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Comments.md @@ -337,4 +337,4 @@ N> [Modern comments](https://support.microsoft.com/en-us/office/modern-comments- ## Online Demo -* Explore how to add comments to a PowerPoint presentation slide using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/comment#/tailwind). \ No newline at end of file +* Explore how to add comments to a PowerPoint presentation slide using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/comment#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-AWS-Elastic-Beanstalk.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-AWS-Elastic-Beanstalk.md index 9539e47b1..eb11be516 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-AWS-Elastic-Beanstalk.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-AWS-Elastic-Beanstalk.md @@ -151,4 +151,4 @@ By executing the program, you will get the **PowerPoint document** as follows. Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-AWS-Lambda.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-AWS-Lambda.md index d762c0e62..a1b0e285b 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-AWS-Lambda.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-AWS-Lambda.md @@ -178,6 +178,6 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-App-Service-Linux.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-App-Service-Linux.md index 8b3c8bb3d..4b9f24c26 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-App-Service-Linux.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-App-Service-Linux.md @@ -220,4 +220,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-App-Service-Windows.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-App-Service-Windows.md index d6cb6b50f..22376a07d 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-App-Service-Windows.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-App-Service-Windows.md @@ -220,4 +220,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-Functions-v1.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-Functions-v1.md index 4374ea02a..4ff8d678a 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-Functions-v1.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-Functions-v1.md @@ -181,5 +181,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-Functions-v4.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-Functions-v4.md index f877eaa9c..b6880ad9d 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-Functions-v4.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Azure-Functions-v4.md @@ -182,5 +182,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Google-App-Engine.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Google-App-Engine.md index 99c9e6258..bac3420b4 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Google-App-Engine.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Create-PowerPoint-Presentation-in-Google-App-Engine.md @@ -284,4 +284,4 @@ By executing the program, you will get the **PowerPoint document** as follows. T Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Getting-Started.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Getting-Started.md index 85b36013d..8e3462299 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Getting-Started.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Getting-Started.md @@ -492,4 +492,4 @@ N> You can refer to our [.NET PowerPoint framework](https://www.syncfusion.com/d ## Online Demo -* Explore how to create slides with simple text in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/default#/tailwind). \ No newline at end of file +* Explore how to create slides with simple text in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/default#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Security.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Security.md index 7d2c9f4f2..e663427f0 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Security.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Security.md @@ -297,5 +297,5 @@ N> 2. For ASP.NET Core, Encryption, Decryption and Write Protection features are ## Online Demo -* Explore how to set write protection for a PowerPoint presentation with a password using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/writeprotection#/tailwind). -* See how to encrypt and decrypt the PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/encryptanddecrypt#/tailwind). \ No newline at end of file +* Explore how to set write protection for a PowerPoint presentation with a password using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/writeprotection#/bootstrap5). +* See how to encrypt and decrypt the PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/encryptanddecrypt#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/SmartArt.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/SmartArt.md index 90f81e198..c210827d9 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/SmartArt.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/SmartArt.md @@ -624,4 +624,4 @@ The modifications in a [SmartArt](https://help.syncfusion.com/cr/document-proces ## Online Demo -* Explore how to create a SmartArt diagram in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/smartart#/tailwind). \ No newline at end of file +* Explore how to create a SmartArt diagram in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/smartart#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Animation.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Animation.md index 8560f9434..1105ddb25 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Animation.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Animation.md @@ -3790,5 +3790,5 @@ Yes ## Online Demo -* Explore how to add different animation effects for shapes in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/createanimation#/tailwind). -* See how to modify animation effects for shapes in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/modifyanimation#/tailwind). \ No newline at end of file +* Explore how to add different animation effects for shapes in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/createanimation#/bootstrap5). +* See how to modify animation effects for shapes in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/modifyanimation#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Charts.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Charts.md index b5a4524d7..c2a1ee979 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Charts.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Charts.md @@ -2106,7 +2106,7 @@ The following Chart types are supported in Presentation. ## Online Demo -* Explore how to create charts in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/chart#/tailwind). +* Explore how to create charts in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/chart#/bootstrap5). ## See Also * [How to set same number of intervals for Primary and Secondary ValueAxis?](https://support.syncfusion.com/kb/article/11366/how-to-set-same-number-of-intervals-for-primary-and-secondary-valueaxis-in-winforms-presentation) diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-OLE-Objects.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-OLE-Objects.md index a94795374..34b3daea8 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-OLE-Objects.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-OLE-Objects.md @@ -377,7 +377,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to insert and extract an OLE Object in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/oleobject#/tailwind). +* Explore how to insert and extract an OLE Object in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/oleobject#/bootstrap5). ## See Also * [How to replace all OLE objects with text in PowerPoint using C#?](https://support.syncfusion.com/kb/article/15653/how-to-replace-all-ole-objects-with-text-in-powerpoint-using-c) diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Slide.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Slide.md index 1865c4393..531e4ce94 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Slide.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Slide.md @@ -1190,7 +1190,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to create slides with simple text, table, and image in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/slide#/tailwind). +* Explore how to create slides with simple text, table, and image in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/slide#/bootstrap5). ## See Also diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Tables.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Tables.md index b5e1db96f..eb6477b4f 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Tables.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-Tables.md @@ -1244,7 +1244,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to add tables in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/table#/tailwind). +* Explore how to add tables in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/table#/bootstrap5). ## See Also * [How to set background image for a table cell?](https://support.syncfusion.com/kb/article/5731/how-to-set-background-image-for-a-table-cell-in-winforms-) diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-find-and-replace.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-find-and-replace.md index 579b4b4a6..681e64c49 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-find-and-replace.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-find-and-replace.md @@ -685,8 +685,8 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to replace a specific text or text pattern in a PowerPoint presentation with another text using the find and replace functionality of the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/findandreplace#/tailwind). -* See how to find specific text and highlight it in an existing PowerPoint presentation using the find functionality of the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/findandhighlight#/tailwind). +* Explore how to replace a specific text or text pattern in a PowerPoint presentation with another text using the find and replace functionality of the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/findandreplace#/bootstrap5). +* See how to find specific text and highlight it in an existing PowerPoint presentation using the find functionality of the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/findandhighlight#/bootstrap5). ## See Also * [How to replace the hyperlink within a SmartArt in PowerPoint Presentation?](https://support.syncfusion.com/kb/article/15293/how-to-replace-the-hyperlink-within-a-smartart-in-powerpoint-presentation) diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-headers-and-footers.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-headers-and-footers.md index a2fca4597..2bf43b90a 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-headers-and-footers.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-headers-and-footers.md @@ -836,4 +836,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to insert headers and footers in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/headerandfooter#/tailwind). \ No newline at end of file +* Explore how to insert headers and footers in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/headerandfooter#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-images.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-images.md index 985d1f6e4..8a460aed1 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-images.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/Working-with-images.md @@ -465,7 +465,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to add and format images in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/image#/tailwind). +* Explore how to add and format images in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/image#/bootstrap5). ## See Also * [How to crop an image in a Presentation using C#?](https://support.syncfusion.com/kb/article/15431/how-to-crop-an-image-in-a-presentation-using-c) diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-edit-slide-transitions-in-powerpoint-presentation-slides-cs-vb-net.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-edit-slide-transitions-in-powerpoint-presentation-slides-cs-vb-net.md index 5e25e0757..88795f6f6 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-edit-slide-transitions-in-powerpoint-presentation-slides-cs-vb-net.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-edit-slide-transitions-in-powerpoint-presentation-slides-cs-vb-net.md @@ -1127,4 +1127,4 @@ Zoom ## Online Demo -* Explore how to create slide transition effects in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://document.syncfusion.com/demos/powerpoint/slidetransition#/tailwind). \ No newline at end of file +* Explore how to create slide transition effects in a PowerPoint presentation using the .NET PowerPoint Library (Presentation) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/powerpoint/slidetransition#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-core-c-sharp.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-core-c-sharp.md index 36b675c0b..aa6320d75 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-core-c-sharp.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-core-c-sharp.md @@ -595,4 +595,4 @@ pptxDoc.Close(); Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-mvc.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-mvc.md index 90932c6f2..9b2860706 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-mvc.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-mvc.md @@ -401,3 +401,5 @@ pptxDoc.Close(); You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Getting-started/ASP.NET-MVC/Read-and-edit-PowerPoint-presentation). Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. + +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetmvc/PowerPoint/HelloWorld#/material3) in ASP.NET MVC. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-web-forms.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-web-forms.md index f572dd9b0..72ce0ef6f 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-web-forms.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-asp-net-web-forms.md @@ -195,4 +195,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-linux.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-linux.md index f08343d03..89c3cf483 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-linux.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-linux.md @@ -290,4 +290,4 @@ pptxDoc.Close(); Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-mac.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-mac.md index 7a0707cc7..c9e4bf165 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-mac.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-mac.md @@ -367,4 +367,4 @@ pptxDoc.Close(); Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net-core) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-maui.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-maui.md index fd3131b63..b3689f74b 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-maui.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-maui.md @@ -711,4 +711,4 @@ saveService.SaveAndView("Output.pptx", "application/vnd.openxmlformats-officedoc Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/maui) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-uwp.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-uwp.md index 47fde43b3..411381f73 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-uwp.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-uwp.md @@ -235,4 +235,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/uwp) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-windows-forms.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-windows-forms.md index c1b61395e..b81ed16c4 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-windows-forms.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-windows-forms.md @@ -398,5 +398,5 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-winui.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-winui.md index 462a0b2b4..30a3e3066 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-winui.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-winui.md @@ -150,7 +150,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/winui) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. ## WinUI UWP app @@ -352,4 +352,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/winui) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-wpf.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-wpf.md index d345cd064..ce685f115 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-wpf.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-wpf.md @@ -466,4 +466,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/net) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-xamarin.md b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-xamarin.md index a3f0c80d9..1bb1f4e0d 100644 --- a/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-xamarin.md +++ b/Document-Processing/PowerPoint/PowerPoint-Library/NET/create-read-edit-powerpoint-files-in-xamarin.md @@ -309,4 +309,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/powerpoint-framework/xamarin) to explore the rich set of Syncfusion® PowerPoint Library (Presentation) features. -An online sample link to [create a PowerPoint Presentation](https://document.syncfusion.com/demos/powerpoint/default#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a PowerPoint Presentation](https://ej2.syncfusion.com/aspnetcore/PowerPoint/Default#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Release-Notes/v31.1.22.md b/Document-Processing/Release-Notes/v31.1.22.md index bd6145762..416e5162d 100644 --- a/Document-Processing/Release-Notes/v31.1.22.md +++ b/Document-Processing/Release-Notes/v31.1.22.md @@ -18,20 +18,20 @@ documentation: ug ## Test Results -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | +| Component Name | Platform | Test Cases | Passed | Failed | Remarks | |------------------------------|----------------------------------------------------------|------------|--------|--------|------------| -| Pdf Library (Pdf) | .NET | 14724 | 14724 | 0 | All Passed | -| Word Library(DocIO) | .NET | 56583 | 14724 | 0 | All Passed | +| Pdf Library (Pdf) | .NET | 14722 | 14722 | 0 | All Passed | +| Word Library(DocIO) | .NET | 56583 | 56583 | 0 | All Passed | | Word Library(DocIO) | Java | 4079 | 4079 | 0 | All Passed | -| Excel Library(XlsIO) | .NET | 37748 | 37748 | 0 | All Passed | -| PowerPoint Library | .NET | 54391 | 54391 | 0 | All Passed | +| Excel Library(XlsIO) | .NET | 37743 | 37743 | 0 | All Passed | +| PowerPoint Library | .NET | 54327 | 54327 | 0 | All Passed | | Metafilerenderer | .NET | 863 | 863 | 0 | All Passed | | SfPdfViewer2 | Blazor | 12906 | 12906 | 0 | All Passed | | Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | 19130 | 0 | All Passed | | SfPdfViewer | MAUI | 14271 | 14271 | 0 | All Passed | | Pdf Viewer | WPF | 2998 | 2998 | 0 | All Passed | | PdfViewer | WinForms | 207 | 207 | 0 | All Passed | -| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5009 | 5009 | 0 | All Passed | -| DOCX Editor(Document Editor) | Blazor | 1936 | 1936 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10407 | 10407 | 0 | All Passed | -| Spreadsheet | WPF | 2710 | 2710 | 0 | All Passed | \ No newline at end of file +| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5005 | 5005 | 0 | All Passed | +| DOCX Editor(Document Editor) | Blazor | 1933 | 1933 | 0 | All Passed | +| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC | 10407 | 10393 | 0 | All Passed | +| Spreadsheet | WPF | 2697 | 2697 | 0 | All Passed | \ No newline at end of file diff --git a/Document-Processing/Release-Notes/v31.1.23.md b/Document-Processing/Release-Notes/v31.1.23.md index 13cd663ae..10f65a7ba 100644 --- a/Document-Processing/Release-Notes/v31.1.23.md +++ b/Document-Processing/Release-Notes/v31.1.23.md @@ -17,20 +17,21 @@ documentation: ug ## Test Results -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | -|------------------------------|----------------------------------------------------------|------------|--------|--------|------------| -| Pdf Library (Pdf) | .NET | 14724 | 14724 | 0 | All Passed | -| Word Library(DocIO) | .NET | 56583 | 14724 | 0 | All Passed | -| Word Library(DocIO) | Java | 4079 | 4079 | 0 | All Passed | -| Excel Library(XlsIO) | .NET | 37748 | 37748 | 0 | All Passed | -| PowerPoint Library | .NET | 54391 | 54391 | 0 | All Passed | -| Metafilerenderer | .NET | 863 | 863 | 0 | All Passed | -| SfPdfViewer2 | Blazor | 12906 | 12906 | 0 | All Passed | -| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | 19130 | 0 | All Passed | -| SfPdfViewer | MAUI | 14271 | 14271 | 0 | All Passed | -| Pdf Viewer | WPF | 2998 | 2998 | 0 | All Passed | -| PdfViewer | WinForms | 207 | 207 | 0 | All Passed | -| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5009 | 5009 | 0 | All Passed | -| DOCX Editor(Document Editor) | Blazor | 1936 | 1936 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10407 | 10407 | 0 | All Passed | -| Spreadsheet | WPF | 2710 | 2710 | 0 | All Passed | \ No newline at end of file + +| Component Name | Platform | Total Count | Failed | Remarks | +|------------------------------|----------------------------------------------------------|-------------|--------|------------| +| Pdf Library (Pdf) | .NET | 14724 | 0 | All Passed | +| Word Library(DocIO) | .NET | 56583 | 0 | All Passed | +| Word Library(DocIO) | Java | 4079 | 0 | All Passed | +| Excel Library(XlsIO) | .NET | 37748 | 0 | All Passed | +| PowerPoint Library | .NET | 54391 | 0 | All Passed | +| Metafilerenderer | .NET | 863 | 0 | All Passed | +| SfPdfViewer2 | Blazor | 12906 | 0 | All Passed | +| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | 0 | All Passed | +| SfPdfViewer | MAUI | 14271 | 0 | All Passed | +| Pdf Viewer | WPF | 2998 | 0 | All Passed | +| PdfViewer | WinForms | 207 | 0 | All Passed | +| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5009 | 0 | All Passed | +| DOCX Editor(Document Editor) | Blazor | 1936 | 0 | All Passed | +| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10407 | 0 | All Passed | +| Spreadsheet | WPF | 2710 | 0 | All Passed | \ No newline at end of file diff --git a/Document-Processing/Release-Notes/v31.2.12.md b/Document-Processing/Release-Notes/v31.2.12.md index d289c0761..46a9b2ddf 100644 --- a/Document-Processing/Release-Notes/v31.2.12.md +++ b/Document-Processing/Release-Notes/v31.2.12.md @@ -18,23 +18,23 @@ documentation: ug ## Test Results -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | -|------------------------------|----------------------------------------------------------|------------|--------|--------|------------| -| Calculate | Windows Forms | 138 | 138 | 0 | All Passed | -| Calculate | WPF | 6 | 6 | 0 | All Passed | -| DOCX Editor(Document Editor) | Blazor | 1944 | 1944 | 0 | All Passed | -| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5023 | 5023 | 0 | All Passed | -| Excel Library(XlsIO) | .NET | 37754 | 37754 | 0 | All Passed | -| Metafilerenderer | .NET | 863 | 863 | 0 | All Passed | -| Pdf Library(Pdf) | .NET | 13938 | 13938 | 0 | All Passed | -| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | 19130 | 0 | All Passed | -| PdfViewer | WPF | 2998 | 2998 | 0 | All Passed | -| PdfViewer | Windows Forms | 207 | 207 | 0 | All Passed | -| PowerPoint Library | .NET | 54397 | 54397 | 0 | All Passed | -| SfPdfViewer | .NETMAUI | 14684 | 14684 | 0 | All Passed | -| SfPdfViewer2 | Blazor | 13107 | 13107 | 0 | All Passed | -| SfSpreadsheet | WPF | 2449 | 2449 | 0 | All Passed | -| Spreadsheet | WinForms | 1917 | 1917 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10411 | 10411 | 0 | All Passed | -| Word Library(DocIO) | .NET | 39899 | 39899 | 0 | All Passed | -| Word Library(DocIO) | Java | 4079 | 4079 | 0 | All Passed | \ No newline at end of file +| Component Name | Test Cases | Passed | Failed | Remarks | +|---------------|------------|--------|--------|---------| +| Calculate | 138 | 138 | 0 | All Passed | +| Calculate | 6 | 6 | 0 | All Passed | +| DOCX Editor(Document Editor) | 1944 | 1944 | 0 | All Passed | +| DOCX Editor(Document Editor) | 5023 | 5023 | 0 | All Passed | +| Excel Library(XlsIO) | 37754 | 37754 | 0 | All Passed | +| Metafilerenderer | 863 | 863 | 0 | All Passed | +| Pdf Library(Pdf) | 13938 | 13938 | 0 | All Passed | +| Pdf Viewer | 19130 | 19130 | 0 | All Passed | +| PdfViewer | 2998 | 2998 | 0 | All Passed | +| PdfViewer | 207 | 207 | 0 | All Passed | +| PowerPoint Library | 54397 | 54397 | 0 | All Passed | +| SfPdfViewer | 14684 | 14684 | 0 | All Passed | +| SfPdfViewer2 | 13107 | 13107 | 0 | All Passed | +| SfSpreadsheet | 2449 | 2449 | 0 | All Passed | +| Spreadsheet | 1917 | 1917 | 0 | All Passed | +| Spreadsheet | 10411 | 10411 | 0 | All Passed | +| Word Library(DocIO) | 39899 | 39899 | 0 | All Passed | +| Word Library(DocIO) | 4079 | 4079 | 0 | All Passed | \ No newline at end of file diff --git a/Document-Processing/Release-Notes/v31.2.15.md b/Document-Processing/Release-Notes/v31.2.15.md deleted file mode 100644 index 5df450732..000000000 --- a/Document-Processing/Release-Notes/v31.2.15.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -title : Essential Studio® for Document Processing Release Notes - v31.2.15 -description : Learn here about the controls in the Essential Studio® for Document Processing Weekly Nuget Release - Release Notes - v31.2.15 -platform : document-processing -documentation: ug ---- - -# Essential Studio® for Document Processing - v31.2.15 Release Notes - -{% include release-info.html date="November 25, 2025" version="v31.2.15" passed="224920" failed="0" %} - -{% directory path: _includes/release-notes/v31.2.15 %} - -{% include {{file.url}} %} - -{% enddirectory %} - -## Test Results - -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | -|------------------------------|----------------------------------------------------------|------------|--------|--------|------------| -| Calculate | Windows Forms | 137 | 137 | 0 | All Passed | -| Calculate | WPF | 9 | 9 | 0 | All Passed | -| DOCX Editor(Document Editor) | Blazor | 1944 | 1944 | 0 | All Passed | -| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5009 | 5009 | 0 | All Passed | -| Excel Library(XlsIO) | .NET | 37757 | 37757 | 0 | All Passed | -| Metafilerenderer | .NET | 863 | 863 | 0 | All Passed | -| Pdf Library(Pdf) | .NET | 14724 | 14724 | 0 | All Passed | -| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19140 | 19140 | 0 | All Passed | -| PdfViewer | WPF | 2998 | 2998 | 0 | All Passed | -| PdfViewer | Windows Forms | 207 | 207 | 0 | All Passed | -| PowerPoint Library | .NET | 54401 | 54401 | 0 | All Passed | -| SfPdfViewer | .NETMAUI | 14684 | 14684 | 0 | All Passed | -| SfPdfViewer2 | Blazor | 13155 | 13155 | 0 | All Passed | -| SfSpreadsheet | WPF | 2710 | 2710 | 0 | All Passed | -| Spreadsheet | Blazor | 2780 | 2780 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10411 | 10411 | 0 | All Passed | -| Word Library(DocIO) | .NET | 39912 | 39912 | 0 | All Passed | -| Word Library(DocIO) | Java | 4079 | 4079 | 0 | All Passed | \ No newline at end of file diff --git a/Document-Processing/Release-Notes/v31.2.16.md b/Document-Processing/Release-Notes/v31.2.16.md deleted file mode 100644 index f4b89f979..000000000 --- a/Document-Processing/Release-Notes/v31.2.16.md +++ /dev/null @@ -1,41 +0,0 @@ ---- -title : Essential Studio® for Document Processing Release Notes - v31.2.16 -description : Learn here about the controls in the Essential Studio® for Document Processing Weekly Nuget Release - Release Notes - v31.2.16 -platform : document-processing -documentation: ug ---- - -# Essential Studio® for Document Processing - v31.2.16 Release Notes - -{% include release-info.html date="December 02, 2025" version="v31.2.16" passed="223947" failed="0" %} - -{% directory path: _includes/release-notes/v31.2.16 %} - -{% include {{file.url}} %} - -{% enddirectory %} - - -## Test Results - - -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | -|------------------------------|----------------------------------------------------------|----------------|---------|----------|---------------| -| Calculate | Windows Forms | 138 | 138 | 0 | All Passed | -| Calculate | WPF | 5 | 5 | 0 | All Passed | -| DOCX Editor(Document Editor) | Blazor | 1944 | 1944 | 0 | All Passed | -| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5023 | 5023 | 0 | All Passed | -| Excel Library | .NET | 37762 | 37762 | 0 | All Passed | -| Metafile Renderer | .NET | 863 | 863 | 0 | All Passed | -| PDF Library | .NET | 13637 | 13637 | 0 | All Passed | -| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19140 | 19140 | 0 | All Passed | -| PDF Viewer | .NETMAUI | 14684 | 14684 | 0 | All Passed | -| PdfViewer | WPF | 2998 | 2998 | 0 | All Passed | -| PdfViewer | Windows Forms | 207 | 207 | 0 | All Passed | -| PowerPoint Library | .NET | 54401 | 54401 | 0 | All Passed | -| SfPdfViewer2 | Blazor | 13203 | 13203 | 0 | All Passed | -| SfSpreadsheet | WPF | 2699 | 2699 | 0 | All Passed | -| Spreadsheet | Blazor | 2780 | 2780 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10411 | 10411 | 0 | All Passed | -| Word Library | .NET | 39973 | 39973 | 0 | All Passed | -| Word Library | Java | 4079 | 4079 | 0 | All Passed | diff --git a/Document-Processing/Release-Notes/v31.2.18.md b/Document-Processing/Release-Notes/v31.2.18.md deleted file mode 100644 index e14dff68c..000000000 --- a/Document-Processing/Release-Notes/v31.2.18.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title : Essential Studio® for Document Processing Release Notes - v31.2.18 -description : Learn here about the controls in the Essential Studio® for Document Processing Weekly Nuget Release - Release Notes - v31.2.18 -platform : document-processing -documentation: ug ---- - -# Essential Studio® for Document Processing - v31.2.18 Release Notes - -{% include release-info.html date="December 09, 2025" version="v31.2.18" passed="224223" failed="0" %} - -{% directory path: _includes/release-notes/v31.2.18 %} - -{% include {{file.url}} %} - -{% enddirectory %} - -## Test Results - - -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | -|------------------------------|----------------------------------------------------------|----------------|---------|----------|---------------| -| Calculate | Windows Forms | 138 | 138 | 0 | All Passed | -| Calculate | WPF | 9 | 9 | 0 | All Passed | -| DOCX Editor(Document Editor) | Blazor | 1944 | 1944 | 0 | All Passed | -| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5023 | 5023 | 0 | All Passed | -| Excel Library | .NET | 37776 | 37776 | 0 | All Passed | -| Metafile Renderer | .NET | 863 | 863 | 0 | All Passed | -| PDF Library | .NET | 13641 | 13641 | 0 | All Passed | -| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19140 | 19140 | 0 | All Passed | -| PDF Viewer | .NETMAUI | 14684 | 14684 | 0 | All Passed | -| PdfViewer | WPF | 2998 | 2998 | 0 | All Passed | -| PdfViewer | Windows Forms | 207 | 207 | 0 | All Passed | -| PowerPoint Library | .NET | 54653 | 54653 | 0 | All Passed | -| SfPdfViewer2 | Blazor | 13203 | 13203 | 0 | All Passed | -| SfSpreadsheet | WPF | 2699 | 2699 | 0 | All Passed | -| Spreadsheet | Blazor | 2780 | 2780 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10411 | 10411 | 0 | All Passed | -| Word Library | .NET | 39975 | 39975 | 0 | All Passed | -| Word Library | Java | 4079 | 4079 | 0 | All Passed | diff --git a/Document-Processing/Release-Notes/v31.2.2.md b/Document-Processing/Release-Notes/v31.2.2.md index ec4519557..15ad9dfb3 100644 --- a/Document-Processing/Release-Notes/v31.2.2.md +++ b/Document-Processing/Release-Notes/v31.2.2.md @@ -17,22 +17,20 @@ documentation: ug ## Test Results - -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | -|------------------------------|----------------------------------------------------------|------------|--------|--------|------------| -| Pdf Library (Pdf) | .NET | 14724 | 14724 | 0 | All Passed | -| Word Library(DocIO) | .NET | 56583 | 56583 | 0 | All Passed | -| Word Library(DocIO) | Java | 4079 | 4079 | 0 | All Passed | -| Excel Library(XlsIO) | .NET | 37778 | 37778 | 0 | All Passed | -| PowerPoint Library | .NET | 54391 | 54391 | 0 | All Passed | -| Metafilerenderer | .NET | 863 | 863 | 0 | All Passed | -| SfPdfViewer2 | Blazor | 12906 | 12906 | 0 | All Passed | -| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | 19130 | 0 | All Passed | -| SfPdfViewer | MAUI | 14684 | 14684 | 0 | All Passed | -| Pdf Viewer | WPF | 2998 | 2998 | 0 | All Passed | -| PdfViewer | WinForms | 207 | 207 | 0 | All Passed | -| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5031 | 5031 | 0 | All Passed | -| DOCX Editor(Document Editor) | Blazor | 1936 | 1936 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10407 | 10407 | 0 | All Passed | -| Spreadsheet | WPF | 2710 | 2710 | 0 | All Passed | - +| Component Name | Platform | Test Cases | Remarks | +|:----------------------------:|:--------------------------------------------------------:|:----------:|:----------:| +| Pdf Library (Pdf) | .NET | 14724 | All Passed | +| Word Library(DocIO) | .NET | 56583 | All Passed | +| Word Library(DocIO) | Java | 4079 | All Passed | +| Excel Library(XlsIO) | .NET | 37778 | All Passed | +| PowerPoint Library | .NET | 54391 | All Passed | +| Metafilerenderer | .NET | 863 | All Passed | +| SfPdfViewer2 | Blazor | 12906 | All Passed | +| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | All Passed | +| SfPdfViewer | MAUI | 14684 | All Passed | +| Pdf Viewer | WPF | 2998 | All Passed | +| PdfViewer | WinForms | 207 | All Passed | +| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5031 | All Passed | +| DOCX Editor(Document Editor) | Blazor | 1936 | All Passed | +| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10407 | All Passed | +| Spreadsheet | WPF | 2710 | All Passed | \ No newline at end of file diff --git a/Document-Processing/Release-Notes/v31.2.3.md b/Document-Processing/Release-Notes/v31.2.3.md index 7648f9cdb..3ea9b02cc 100644 --- a/Document-Processing/Release-Notes/v31.2.3.md +++ b/Document-Processing/Release-Notes/v31.2.3.md @@ -18,19 +18,21 @@ documentation: ug ## Test Results -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | -|------------------------------|----------------------------------------------------------|------------|--------|--------|------------| -| DOCX Editor(Document Editor) | Blazor | 1933 | 1933 | 0 | All Passed | -| Excel Library(XlsIO) | .NET | 37738 | 37738 | 0 | All Passed | -| Metafilerenderer | .NET | 863 | 863 | 0 | All Passed | -| Pdf Library(Pdf) | .NET | 14735 | 14735 | 0 | All Passed | -| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | 19130 | 0 | All Passed | -| PdfViewer | WPF | 2998 | 2998 | 0 | All Passed | -| PdfViewer | Windows Forms | 207 | 207 | 0 | All Passed | -| PowerPoint Library | .NET | 54390 | 54390 | 0 | All Passed | -| SfPdfViewer | .NETMAUI | 14684 | 14684 | 0 | All Passed | -| SfPdfViewer2 | Blazor | 14364 | 14364 | 0 | All Passed | -| SfSpreadsheet | WPF | 2710 | 2710 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10407 | 10407 | 0 | All Passed | -| Word Library(DocIO) | .NET | 39881 | 39881 | 0 | All Passed | -| Word Library(DocIO) | Java | 4079 | 4079 | 0 | All Passed | + +| Platform | Component Name | Version | Branch | Project | Total Test Cases | Passed | Failed | Not Run | +|--------------|------------------------------|---------|---------------------|----------------------------------------------------------|------------------|--------|--------|---------| +| File Formats | DOCX Editor(Document Editor) | 31.2.3 | hotfix | Blazor | 1933 | 1933 | 0 | 0 | +| File Formats | Excel Library(XlsIO) | 31.2.3 | hotfix/31.1.17_Vol3 | .NET | 37738 | 37738 | 0 | 0 | +| File Formats | Metafilerenderer | 31.2.3 | hotfix/31.1.17_Vol3 | .NET | 863 | 863 | 0 | 0 | +| File Formats | Pdf Library(Pdf) | 31.2.3 | Hotfix | .NET | 14735 | 14735 | 0 | 0 | +| File Formats | Pdf Viewer | 31.2.3 | Hotfix | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | 19130 | 0 | 0 | +| File Formats | PdfViewer | 30.1.10 | hotfix/31.1.17_Vol3 | WPF | 2998 | 2998 | 0 | 0 | +| File Formats | PdfViewer | 31.2.3 | Hotfix | Windows Forms | 207 | 207 | 0 | 0 | +| File Formats | PowerPoint Library | 31.2.3 | hotfix/31.1.17_Vol3 | .NET | 54390 | 54390 | 0 | 0 | +| File Formats | SfPdfViewer | 31.2.3 | Hotfix | .NETMAUI | 14684 | 14684 | 0 | 0 | +| File Formats | SfPdfViewer2 | 31.2.3 | hotfix | Blazor | 14364 | 14364 | 0 | 0 | +| File Formats | SfSpreadsheet | 31.2.3 | hotfix | WPF | 2710 | 2710 | 0 | 0 | +| File Formats | Spreadsheet | 31.2.3 | Hotfix | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10407 | 10407 | 0 | 0 | +| File Formats | Word Library(DocIO) | 31.2.3 | hotfix/31.1.17_Vol3 | .NET | 39881 | 39881 | 0 | 0 | +| File Formats | Word Library(DocIO) | 31.2.3 | hotfix/31.1.17_Vol3 | Java | 4079 | 4079 | 0 | 0 | +| | | | | | | | | | \ No newline at end of file diff --git a/Document-Processing/Release-Notes/v31.2.4.md b/Document-Processing/Release-Notes/v31.2.4.md index 48371f64c..9f8f9b363 100644 --- a/Document-Processing/Release-Notes/v31.2.4.md +++ b/Document-Processing/Release-Notes/v31.2.4.md @@ -17,22 +17,21 @@ documentation: ug ## Test Results - -| Component Name | Platform | Test Cases | Passed | Failed | Remarks | -|------------------------------|----------------------------------------------------------|------------|--------|--------|------------| -| DOCX Editor(Document Editor) | Blazor | 1943 | 1943 | 0 | All Passed | -| DOCX Editor(Document Editor) | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 5023 | 5023 | 0 | All Passed | -| Excel Library(XlsIO) | .NET | 37735 | 37735 | 0 | All Passed | -| Metafilerenderer | .NET | 863 | 863 | 0 | All Passed | -| Pdf Library(Pdf) | .NET | 13898 | 13898 | 0 | All Passed | -| Pdf Viewer | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 19130 | 19130 | 0 | All Passed | -| PdfViewer | WPF | 2998 | 2998 | 0 | All Passed | -| PdfViewer | Windows Forms | 207 | 207 | 0 | All Passed | -| PowerPoint Library | .NET | 54392 | 54392 | 0 | All Passed | -| SfPdfViewer | .NETMAUI | 14684 | 14684 | 0 | All Passed | -| SfPdfViewer2 | Blazor | 13104 | 13104 | 0 | All Passed | -| SfSpreadsheet | WPF | 2696 | 2696 | 0 | All Passed | -| Spreadsheet | Blazor | 1917 | 1917 | 0 | All Passed | -| Spreadsheet | Web(Javascript, Angular, React, Vue, ASP.NET Core & MVC) | 10411 | 10411 | 0 | All Passed | -| Word Library(DocIO) | .NET | 39886 | 39886 | 0 | All Passed | -| Word Library(DocIO) | Java | 4079 | 4079 | 0 | All Passed | \ No newline at end of file +| Component Name | Test Cases | Passed | Failed | Remarks | +|---------------|------------|--------|--------|---------| +| DOCX Editor(Document Editor) | 1943 | 1943 | 0 | All Passed | +| DOCX Editor(Document Editor) | 5023 | 5023 | 0 | All Passed | +| Excel Library(XlsIO) | 37735 | 37735 | 0 | All Passed | +| Metafilerenderer | 863 | 863 | 0 | All Passed | +| Pdf Library(Pdf) | 13898 | 13898 | 0 | All Passed | +| Pdf Viewer | 19130 | 19130 | 0 | All Passed | +| PdfViewer | 2998 | 2998 | 0 | All Passed | +| PdfViewer | 207 | 207 | 0 | All Passed | +| PowerPoint Library | 54392 | 54392 | 0 | All Passed | +| SfPdfViewer | 14684 | 14684 | 0 | All Passed | +| SfPdfViewer2 | 13104 | 13104 | 0 | All Passed | +| SfSpreadsheet | 2696 | 2696 | 0 | All Passed | +| Spreadsheet | 1917 | 1917 | 0 | All Passed | +| Spreadsheet | 10411 | 10411 | 0 | All Passed | +| Word Library(DocIO) | 39886 | 39886 | 0 | All Passed | +| Word Library(DocIO) | 4079 | 4079 | 0 | All Passed | \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Azure-Images/Functions-v1/Nuget-Package_WordtoImage.png b/Document-Processing/Word/Conversions/Word-To-Image/NET/Azure-Images/Functions-v1/Nuget-Package_WordtoImage.png index c565e43aa..109fbc750 100644 Binary files a/Document-Processing/Word/Conversions/Word-To-Image/NET/Azure-Images/Functions-v1/Nuget-Package_WordtoImage.png and b/Document-Processing/Word/Conversions/Word-To-Image/NET/Azure-Images/Functions-v1/Nuget-Package_WordtoImage.png differ diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET-Core.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET-Core.md index 8cefb3334..736e75f2f 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET-Core.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET-Core.md @@ -349,4 +349,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET-MVC.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET-MVC.md index 682e5cc77..d5d516564 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET-MVC.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET-MVC.md @@ -250,3 +250,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetmvc/Word/WordtoImage#/material3) in ASP.NET MVC. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET.md index 1de12fa0a..0f052f2c5 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-ASP-NET.md @@ -113,4 +113,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-AWS-Elastic-Beanstalk.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-AWS-Elastic-Beanstalk.md index f5cbcf321..0112bb460 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-AWS-Elastic-Beanstalk.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-AWS-Elastic-Beanstalk.md @@ -138,4 +138,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-AWS-Lambda.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-AWS-Lambda.md index e59a2ea02..08f01f8c3 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-AWS-Lambda.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-AWS-Lambda.md @@ -200,4 +200,4 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-App-Service-Linux.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-App-Service-Linux.md index 6c77add64..7110132d2 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-App-Service-Linux.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-App-Service-Linux.md @@ -203,4 +203,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-App-Service-Windows.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-App-Service-Windows.md index 0486b60b7..bcac415da 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-App-Service-Windows.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-App-Service-Windows.md @@ -197,4 +197,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-Functions-v1.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-Functions-v1.md index 1380587c8..d894d7298 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-Functions-v1.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-Functions-v1.md @@ -146,5 +146,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-Functions-v4.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-Functions-v4.md index 59278173e..cc7df81bb 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-Functions-v4.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Azure-Functions-v4.md @@ -153,5 +153,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Blazor.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Blazor.md index 94331db65..88d3ea765 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Blazor.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Blazor.md @@ -1301,3 +1301,4 @@ Click [here](https://www.syncfusion.com/document-processing/word-framework/blazo An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. + diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Google-App-Engine.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Google-App-Engine.md index ce3be291e..2294035cb 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Google-App-Engine.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Google-App-Engine.md @@ -258,4 +258,4 @@ By executing the program, you will get the **image** as follows. The output will Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Linux.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Linux.md index adcc7880b..7ac198553 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Linux.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Linux.md @@ -223,7 +223,7 @@ By executing the program, you will get the **image** as follows. The output will Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. ## Frequently Asked Questions diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-MAUI.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-MAUI.md index d848929dd..ba1c39201 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-MAUI.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-MAUI.md @@ -584,4 +584,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/maui) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Mac.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Mac.md index 4d6ddd2e5..ddce433c5 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Mac.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Mac.md @@ -283,4 +283,4 @@ By executing the program, you will get the **image** as follows. The output will Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-UWP.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-UWP.md index 3688d30ed..873992c22 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-UWP.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-UWP.md @@ -148,4 +148,4 @@ N> As per [MSDN announcement](https://devblogs.microsoft.com/dotnet/announcing-u Click [here](https://www.syncfusion.com/document-processing/word-framework/uwp) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-WPF.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-WPF.md index fd4ed604b..3b3d6db70 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-WPF.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-WPF.md @@ -222,4 +222,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-WinUI.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-WinUI.md index 531f8c94e..bf2e35467 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-WinUI.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-WinUI.md @@ -195,4 +195,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/winui) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Windows-Forms.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Windows-Forms.md index 98a017f21..54cc57932 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Windows-Forms.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Windows-Forms.md @@ -254,4 +254,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Xamarin.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Xamarin.md index e0206920d..47455d96a 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Xamarin.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-Document-to-Image-in-Xamarin.md @@ -188,4 +188,4 @@ By executing the program, you will get the **image** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/xamarin) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/Word/WordToImage#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-document-to-Image-in-Console-application.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-document-to-Image-in-Console-application.md index 750aee4d5..6a1d17415 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-document-to-Image-in-Console-application.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/Convert-Word-document-to-Image-in-Console-application.md @@ -289,7 +289,7 @@ By executing the program, you will get the **image** as follows. * Visual Studio 2022. * Install **.NET desktop development** workload with necessary .NET Framework SDK. -Step 1: Create a new **.NET Framework console application** project. +Step 1: Create a new **.NET FrameWork console application** project. ![Create a .NET FrameWork Console application in Visual Studio](Console-Images/NET-FrameWork/Console-Template-Net-FrameWork.png) Step 2: Install [Syncfusion.DocIO.WinForms](https://www.nuget.org/packages/Syncfusion.DocIO.WinForms/) NuGet package as a reference to your Windows Forms application from the [NuGet.org](https://www.nuget.org/). @@ -423,4 +423,4 @@ By executing the program, you will get the **image** as follows. {% endtabcontents %} -An online sample link to [convert Word document to image](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to image](https://ej2.syncfusion.com/aspnetcore/word/wordtoimage#/bootstrap5) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/UWP_images/Nuget-Package-WordtoPDF.png b/Document-Processing/Word/Conversions/Word-To-Image/NET/UWP_images/Nuget-Package-WordtoPDF.png index fe3241e23..f1c0609dc 100644 Binary files a/Document-Processing/Word/Conversions/Word-To-Image/NET/UWP_images/Nuget-Package-WordtoPDF.png and b/Document-Processing/Word/Conversions/Word-To-Image/NET/UWP_images/Nuget-Package-WordtoPDF.png differ diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/WinUI_Images/Nuget-Package-WordtoPDF.png b/Document-Processing/Word/Conversions/Word-To-Image/NET/WinUI_Images/Nuget-Package-WordtoPDF.png index 131c0efb2..51e451edc 100644 Binary files a/Document-Processing/Word/Conversions/Word-To-Image/NET/WinUI_Images/Nuget-Package-WordtoPDF.png and b/Document-Processing/Word/Conversions/Word-To-Image/NET/WinUI_Images/Nuget-Package-WordtoPDF.png differ diff --git a/Document-Processing/Word/Conversions/Word-To-Image/NET/word-to-image.md b/Document-Processing/Word/Conversions/Word-To-Image/NET/word-to-image.md index 2737efd09..0f8ecf7bf 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/NET/word-to-image.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/NET/word-to-image.md @@ -6,7 +6,7 @@ control: DocIO documentation: UG --- -# Convert Word to Image using Syncfusion® Word library +# Convert Word to Image using Syncfusion® Word (DocIO) library Syncfusion® Word library (DocIO) allows you to convert Word document to image within a few lines of code in .NET applications and also it does not require Adobe and Microsoft Word application to be installed in the machine. Using this, you can create an input Word document from scratch or load an existing Word document and then easily convert to Image. @@ -367,7 +367,7 @@ During Word to Image conversions, if a glyph of the input text is unavailable in ## Online Demo -* Explore how to convert a Word document to an image using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind). +* Explore how to convert a Word document to an image using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtoimage#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Conversions/Word-To-Image/overview.md b/Document-Processing/Word/Conversions/Word-To-Image/overview.md index 18640d422..24865a3e1 100644 --- a/Document-Processing/Word/Conversions/Word-To-Image/overview.md +++ b/Document-Processing/Word/Conversions/Word-To-Image/overview.md @@ -6,7 +6,7 @@ control: DocIO documentation: UG --- -# Convert Word to Image using Syncfusion® Word library +# Convert Word to Image using Syncfusion® Word (DocIO) library Syncfusion® Word library (DocIO) allows you to convert Word document to image within a few lines of code in .NET applications and also it does not require Adobe and Microsoft Word application to be installed in the machine. Using this, you can create an input Word document from scratch or load an existing Word document and then easily convert to Image. @@ -381,7 +381,7 @@ During Word to Image conversions, if a glyph of the input text is unavailable in ## Online Demo -* Explore how to convert a Word document to an image using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtoimage#/tailwind). +* Explore how to convert a Word document to an image using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtoimage#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET-Core.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET-Core.md index efbd457e4..dae2c3780 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET-Core.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET-Core.md @@ -356,4 +356,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET-MVC.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET-MVC.md index 4bad5240a..b754e6a5a 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET-MVC.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET-MVC.md @@ -246,4 +246,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. - \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetmvc/Word/DOCtoPDF#/material3) in ASP.NET MVC \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET.md index bbc7331cf..d38844c20 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-ASP-NET.md @@ -111,5 +111,5 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-AWS-Elastic-Beanstalk.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-AWS-Elastic-Beanstalk.md index 7156d9640..8cf65c3a3 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-AWS-Elastic-Beanstalk.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-AWS-Elastic-Beanstalk.md @@ -59,7 +59,7 @@ Step 5: Add a new button in the **Index.cshtml** as shown below. {% endhighlight %} {% endtabs %} -Step 6: Include the below code snippet in the **HomeController.cs** file to **convert a Word document to Pdf** and download it. +Step 6: Include the below code snippet in the **Homecontroller.cs** file to **convert a Word document to Pdf** and download it. {% tabs %} {% highlight c# tabtitle="C#" %} @@ -148,4 +148,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-AWS-Lambda.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-AWS-Lambda.md index d1a1c1356..f296129ce 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-AWS-Lambda.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-AWS-Lambda.md @@ -116,7 +116,7 @@ private void FontSettings_SubstituteFont(object sender, SubstituteFontEventArgs {% endtabs %} -N> If using an older version of Syncfusion and Skiasharp NuGet as v2.88.8, there is a chance of encountering a libSkiaSharp not found exception during the conversion process. +N> If using an older version of Syncfusion and Skiasharp NuGets as v2.88.8, there is a chance of encountering a libSkiaSharp not found exception during the conversion process. To resolve this, refer to the code snippet provided in the documentation [here]( https://help.syncfusion.com/document-processing/faq/how-to-resolve-libskiasharp-not-found-exception-in-net8-and-net9-on-linux). Step 9: Right-click the project and select **Publish to AWS Lambda**. @@ -206,4 +206,4 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-App-Service-Linux.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-App-Service-Linux.md index 0dbfb4d7c..d2c19fb9c 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-App-Service-Linux.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-App-Service-Linux.md @@ -209,4 +209,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-App-Service-Windows.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-App-Service-Windows.md index e7f0b3d4e..0439fa03e 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-App-Service-Windows.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-App-Service-Windows.md @@ -208,4 +208,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-Functions-v1.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-Functions-v1.md index 358dc75e0..2cce09b2e 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-Functions-v1.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-Functions-v1.md @@ -154,5 +154,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-Functions-v4.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-Functions-v4.md index e7c0fb519..41459ba54 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-Functions-v4.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Azure-Functions-v4.md @@ -155,5 +155,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Blazor.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Blazor.md index 797bfe6fe..f3a2bc6bd 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Blazor.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Blazor.md @@ -1312,3 +1312,4 @@ Click [here](https://www.syncfusion.com/document-processing/word-framework/blazo An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. + diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Google-App-Engine.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Google-App-Engine.md index 6bbb0b1e8..4503f0a91 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Google-App-Engine.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Google-App-Engine.md @@ -235,4 +235,4 @@ By executing the program, you will get the **PDF document** as follows. The outp Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Google-Cloud-Run.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Google-Cloud-Run.md index 9716a5050..14852dc4c 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Google-Cloud-Run.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Google-Cloud-Run.md @@ -321,4 +321,4 @@ By executing the program, you will get the **PDF document** as follows. The outp Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Linux.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Linux.md index bc660ed67..3f2ea7a41 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Linux.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Linux.md @@ -228,7 +228,7 @@ By executing the program, you will get the **PDF** as follows. The output will b Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. ## Frequently Asked Questions diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-MAC.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-MAC.md index 450f03443..6b3059757 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-MAC.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-MAC.md @@ -294,4 +294,4 @@ By executing the program, you will get the **PDF document** as follows. The outp Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-MAUI.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-MAUI.md index 9a099cdfc..824d2dbd2 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-MAUI.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-MAUI.md @@ -588,4 +588,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/maui) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-UWP.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-UWP.md index 4f1fe7811..a752f5593 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-UWP.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-UWP.md @@ -8,7 +8,7 @@ documentation: UG # Convert Word document to PDF in UWP -Syncfusion® DocIO is a [.NET Core Word library](https://www.syncfusion.com/document-sdk/net-word-library) used to create, read, edit, and **convert Word documents** programmatically without **Microsoft Word** or interop dependencies. Using this library, you can **convert a Word document to PDF in UWP**. +Syncfusion® DocIO is a [.NET Core Word library](https://www.syncfusion.com/document-processing/word-framework/net-core/word-library) used to create, read, edit, and **convert Word documents** programmatically without **Microsoft Word** or interop dependencies. Using this library, you can **convert a Word document to PDF in UWP**. ## Steps to convert Word document to PDF in UWP @@ -151,4 +151,4 @@ N> As per [MSDN announcement](https://devblogs.microsoft.com/dotnet/announcing-u Click [here](https://www.syncfusion.com/document-processing/word-framework/uwp) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-WPF.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-WPF.md index d66885113..0b3545616 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-WPF.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-WPF.md @@ -220,4 +220,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-WinUI.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-WinUI.md index 91256839b..232d7a09d 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-WinUI.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-WinUI.md @@ -169,4 +169,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/winui) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Xamarin.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Xamarin.md index c2d621cc6..2c05e6757 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Xamarin.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-PDF-in-Xamarin.md @@ -189,4 +189,4 @@ By executing the program, you will get the PDF document as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/xamarin) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-Pdf-in-Window-Forms.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-Pdf-in-Window-Forms.md index 08518967d..7b04a65d3 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-Pdf-in-Window-Forms.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-Document-to-Pdf-in-Window-Forms.md @@ -252,4 +252,4 @@ By executing the program, you will get the **PDF document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-document-to-PDF-in-Console-application.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-document-to-PDF-in-Console-application.md index 5bd20ce9c..c7380986b 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-document-to-PDF-in-Console-application.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Convert-Word-document-to-PDF-in-Console-application.md @@ -289,7 +289,7 @@ By executing the program, you will get the **PDF** as follows. * Visual Studio 2022. * Install **.NET desktop development** workload with necessary .NET Framework SDK. -Step 1: Create a new **.NET Framework console application** project. +Step 1: Create a new **.NET FrameWork console application** project. ![Create a .NET FrameWork Console application in Visual Studio](Console-Images/NET-FrameWork/Console-Template-Net-FrameWork.png) Step 2: Install [Syncfusion.DocToPdfConverter.WinForms](https://www.nuget.org/packages/Syncfusion.DocToPDFConverter.WinForms) NuGet package as a reference to your Windows Forms application from the [NuGet.org](https://www.nuget.org/). @@ -439,4 +439,4 @@ By executing the program, you will get the **PDF** as follows. {% endtabcontents %} -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/word/wordtopdf#/bootstrap5) in ASP.NET Core. diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Performance-metrics.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Performance-metrics.md index 025edbe4e..4fe9e6fd6 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Performance-metrics.md +++ b/Document-Processing/Word/Conversions/Word-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.DocIORenderer.Net.Core v31.2.12](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core/31.2.12) +* **Syncfusion® Version:** [Syncfusion.DocIORenderer.Net.Core v31.1.17](https://www.nuget.org/packages/Syncfusion.DocIORenderer.Net.Core/31.1.17) ## Word to PDF conversion @@ -31,22 +31,22 @@ The following system configurations were used for benchmarking: 2 {{'[Word-2.docx](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Performance-metrices/Word-to-PDF/.NET/Word-to-PDF/Word-to-PDF/Data/Document-2.docx)'| markdownify }} - 0.12 + 1.3 50 {{'[Word-50.docx](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Performance-metrices/Word-to-PDF/.NET/Word-to-PDF/Word-to-PDF/Data/Document-50.docx)'| markdownify }} - 4.50 + 8.6 100 {{'[Word-100.docx](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Performance-metrices/Word-to-PDF/.NET/Word-to-PDF/Word-to-PDF/Data/Document-100.docx)'| markdownify }} - 11.71 + 14.2 500 {{'[Word-500.docx](https://github.com/SyncfusionExamples/DocIO-Examples/blob/main/Performance-metrices/Word-to-PDF/.NET/Word-to-PDF/Word-to-PDF/Data/Document-500.docx)'| markdownify }} - 23.73 + 31.6 diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md index 02d0363d3..2a02bf30b 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md @@ -1424,5 +1424,3 @@ pdfDocument.Close() {% endhighlight %} {% endtabs %} - -You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Apply-Matte-to-Transparent-Images). \ No newline at end of file diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/word-to-pdf-linux-docker.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/word-to-pdf-linux-docker.md index 7b433f4c2..ad75e15bc 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/word-to-pdf-linux-docker.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/word-to-pdf-linux-docker.md @@ -321,7 +321,7 @@ A complete working example of converting Word document to PDF in Ubuntu Linux Do Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind) in ASP.NET Core. +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. ## See Also diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/NET/word-to-pdf.md b/Document-Processing/Word/Conversions/Word-To-PDF/NET/word-to-pdf.md index a895bbff7..66d0b8897 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/NET/word-to-pdf.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/NET/word-to-pdf.md @@ -1,12 +1,12 @@ --- -title: Convert Word to PDF in C# using DocIO | Syncfusion +title: Convert Word to PDF in C# | DocIO | Syncfusion description: Learn how to convert a Word document to PDF, PDF/A, and PDF/UA using the .NET Word (DocIO) library without Microsoft Word or interop dependencies. platform: document-processing control: DocIO documentation: UG --- -# Convert Word to PDF using Syncfusion® Word (DocIO) library +# Convert Word to PDF using Syncfusion® Word (DocIO) library Syncfusion® Word library (DocIO) allows you to convert Word document to PDF within a few lines of code in .NET applications and also it does not require Adobe and Microsoft Word application to be installed in the machine. Using this, you can create an input Word document from scratch or load an existing Word document and then easily convert to PDF. @@ -240,7 +240,7 @@ You can restrict all the permission in a PDF document using [PdfPermissionsFlags ### Apply Matte to Transparent Images -This setting allows you to determine whether to **apply a matte color to transparent images** during Word to PDF conversion, ensuring they render cleanly without unwanted borders or artifacts in the final PDF. For further information, click [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf-settings#apply-matte-to-transparent-images). +This setting allows you to determine whether to **apply a matte color to transparent images** during Word to PDF conversion, ensuring they render cleanly without unwanted borders or artifacts in the final PDF. For further information, click [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf-settings#restrict-all-permission-in-a-pdf-document). ## Font Substitution @@ -254,7 +254,7 @@ During Word to PDF conversions, if a glyph of the input text is unavailable in t ## Unsupported elements in Word to PDF conversion -Refer [here](document-processing/word/conversions/word-to-pdf/net/unsupported-elements-word-to-pdf#detailed-limitations) to know about unsupported elements in Word to PDF conversion. +Refer [here](document-processing/word/conversions/word-to-pdf/net/limitations-word-to-pdf) to know about unsupported elements in Word to PDF conversion. ## Show Warning for Unsupported Elements @@ -262,9 +262,9 @@ When converting a Word document to a PDF, the presence of unsupported elements i ## Online Demo -* Explore how to convert a Word document to PDF using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind). -* See how to convert a Word document to PDF/UA using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtopdfua#/tailwind). -* See how to convert a Word document to PDF/A using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtopdfa#/tailwind). +* Explore how to convert a Word document to PDF using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtopdf#/bootstrap5). +* See how to convert a Word document to PDF/UA using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtopdfua#/bootstrap5). +* See how to convert a Word document to PDF/A using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtopdfa#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Conversions/Word-To-PDF/overview.md b/Document-Processing/Word/Conversions/Word-To-PDF/overview.md index b13905a24..5668b81bc 100644 --- a/Document-Processing/Word/Conversions/Word-To-PDF/overview.md +++ b/Document-Processing/Word/Conversions/Word-To-PDF/overview.md @@ -6,7 +6,7 @@ control: DocIO documentation: UG --- -# Convert Word to PDF using Syncfusion® Word (DocIO) library +# Convert Word to PDF using Syncfusion® Word (DocIO) library Syncfusion® Word library (DocIO) allows you to convert Word document to PDF within a few lines of code in .NET applications and also it does not require Adobe and Microsoft Word application to be installed in the machine. Using this, you can create an input Word document from scratch or load an existing Word document and then easily convert to PDF. @@ -148,7 +148,7 @@ T> For troubleshooting issues in the .NET Word Library (DocIO), refer [this](htt N> 1. For .NET Framework, creating an instance of the [ChartToImageConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.OfficeChartToImageConverter.ChartToImageConverter.html) class is mandatory to convert the charts present in the Word to PDF. Otherwise, the charts are not preserved in the converted PDF. Whereas this is not necessary for .NET Core, as ChartToImageConverter is initialized internally in Syncfusion.DocIORenderer.Portable assembly. N> 2. Total number of pages in the converted PDF may vary based on unsupported elements in the input Word document. N> 3. "DocIO supports Word to PDF conversion in UWP application using DocIORenderer." For further information, please refer [here](https://support.syncfusion.com/kb/article/8902/how-to-convert-word-document-to-pdf-in-uwp) -N> 4. Font-related issues during Word to PDF or image conversion can arise due to missing or incorrect font. For detailed instructions on resolving these problems, refer to this [article](https://support.syncfusion.com/kb/article/13969/how-to-resolve-font-problems-during-word-to-pdf-or-image-conversion). +N> 4. Font-related issues during Word to PDF or image conversion can arise due to missing or incorrect font. For detailed instructions on resolving these problems, refer to this [articl(https://support.syncfusion.com/kb/article/13969/how-to-resolve-font-problems-during-word-to-pdf-or-image-conversion). ## Supported File formats @@ -242,7 +242,7 @@ You can restrict all the permission in a PDF document using [PdfPermissionsFlags ### Apply Matte to Transparent Images -This setting allows you to determine whether to **apply a matte color to transparent images** during Word to PDF conversion, ensuring they render cleanly without unwanted borders or artifacts in the final PDF. For further information, click [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf-settings#apply-matte-to-transparent-images). +This setting allows you to determine whether to **apply a matte color to transparent images** during Word to PDF conversion, ensuring they render cleanly without unwanted borders or artifacts in the final PDF. For further information, click [here](https://help.syncfusion.com/document-processing/word/conversions/word-to-pdf/net/word-to-pdf-settings#restrict-all-permission-in-a-pdf-document). ## Font Substitution @@ -264,9 +264,9 @@ When converting a Word document to a PDF, the presence of unsupported elements i ## Online Demo -* Explore how to convert a Word document to PDF using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtopdf#/tailwind). -* See how to convert a Word document to PDF/UA using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtopdfua#/tailwind). -* See how to convert a Word document to PDF/A using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtopdfa#/tailwind). +* Explore how to convert a Word document to PDF using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtopdf#/bootstrap5). +* See how to convert a Word document to PDF/UA using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtopdfua#/bootstrap5). +* See how to convert a Word document to PDF/A using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtopdfa#/bootstrap5). ## See Also @@ -290,5 +290,5 @@ When converting a Word document to a PDF, the presence of unsupported elements i * [How to preserve track changes markup in Word to PDF conversion](https://support.syncfusion.com/kb/article/14997/how-to-preserve-simple-markup-all-markup-and-no-markup-of-track-changes-during-word-to-pdf-conversion) * [How to preserve simple markup, all markup, and no markup of track changes during Word to PDF conversion?](https://support.syncfusion.com/kb/article/14997/how-to-preserve-simple-markup-all-markup-and-no-markup-of-track-changes-during-word-to-pdf-conversion) * [How to create a Word document with form fields from JSON and convert it to PDF?](https://support.syncfusion.com/kb/article/19823/how-to-create-a-word-document-with-form-fields-from-json-and-convert-it-to-pdf) -* [How to Rename PDF Bookmark in Word to PDF in .NET Core Word Document?](https://support.syncfusion.com/kb/article/19808/how-to-rename-pdf-bookmark-in-word-to-pdf-in-net-core-word-document) +* [How to Rename PDF Bookmark in Word to PDF in .Net Core Word Document?](https://support.syncfusion.com/kb/article/19808/how-to-rename-pdf-bookmark-in-word-to-pdf-in-net-core-word-document) * [How to check if a font contains the required glyphs for Word to PDF and image conversion?](https://support.syncfusion.com/kb/article/19671/how-to-check-if-a-font-contains-the-required-glyphs-for-word-to-pdf-and-image-conversion) diff --git a/Document-Processing/Word/Word-Library/NET/Accepting-or-Rejecting-Track-Changes.md b/Document-Processing/Word/Word-Library/NET/Accepting-or-Rejecting-Track-Changes.md index 49987c8f6..548c90f95 100644 --- a/Document-Processing/Word/Word-Library/NET/Accepting-or-Rejecting-Track-Changes.md +++ b/Document-Processing/Word/Word-Library/NET/Accepting-or-Rejecting-Track-Changes.md @@ -399,7 +399,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to accept or reject the tracked changes in the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/trackchanges#/tailwind). +* Explore how to accept or reject the tracked changes in the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/trackchanges#/bootstrap5). ## Frequently Asked Questions diff --git a/Document-Processing/Word/Word-Library/NET/Applying-Watermark.md b/Document-Processing/Word/Word-Library/NET/Applying-Watermark.md index a03a198c5..29dedb4f6 100644 --- a/Document-Processing/Word/Word-Library/NET/Applying-Watermark.md +++ b/Document-Processing/Word/Word-Library/NET/Applying-Watermark.md @@ -181,7 +181,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to insert text and picture watermark into the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/watermark#/tailwind). +* Explore how to insert text and picture watermark into the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/watermark#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-AWS-Elastic-Beanstalk.md b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-AWS-Elastic-Beanstalk.md index d8a014d46..815a0daa9 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-AWS-Elastic-Beanstalk.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-AWS-Elastic-Beanstalk.md @@ -322,4 +322,4 @@ By executing the program, you will get the **Word document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-AWS-Lambda.md b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-AWS-Lambda.md index 9d64a6c36..53c59398e 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-AWS-Lambda.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-AWS-Lambda.md @@ -353,4 +353,4 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-App-Service-Linux.md b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-App-Service-Linux.md index dfbbe76ce..b30582825 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-App-Service-Linux.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-App-Service-Linux.md @@ -344,4 +344,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-App-Service-Windows.md b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-App-Service-Windows.md index adc556a12..97036f25a 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-App-Service-Windows.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-App-Service-Windows.md @@ -344,4 +344,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [convert Word document to PDF](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [convert Word document to PDF](https://ej2.syncfusion.com/aspnetcore/Word/WordToPDF#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-Functions-v1.md b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-Functions-v1.md index 60e955d1b..3cabfed8e 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-Functions-v1.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-Functions-v1.md @@ -353,5 +353,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-Functions-v4.md b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-Functions-v4.md index e97a1ca3b..af28340e5 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-Functions-v4.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Azure-Functions-v4.md @@ -353,5 +353,5 @@ From GitHub, you can download the [console application](https://github.com/Syncf Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Google-App-Engine.md b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Google-App-Engine.md index 7db947ef1..7e064cf28 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Google-App-Engine.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-Document-in-Google-App-Engine.md @@ -458,4 +458,4 @@ By executing the program, you will get the **Word document** as follows. The out Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET-Core.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET-Core.md index bf9d43472..95ffd036e 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET-Core.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET-Core.md @@ -949,4 +949,4 @@ By executing the program, you will get the **Word document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET-MVC.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET-MVC.md index 308b76692..9bac0de96 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET-MVC.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET-MVC.md @@ -621,3 +621,5 @@ By executing the program, you will get the Word document as follows. {% endtabcontents %} Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. + +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetmvc/Word/HelloWorld#/material3) in ASP.NET MVC. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET.md index d138f1bd5..dc3aa0eeb 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-ASP-NET.md @@ -296,4 +296,4 @@ By executing the program, you will get the **Word document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Console-application.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Console-application.md index c749f378e..408357fc0 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Console-application.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Console-application.md @@ -888,7 +888,7 @@ By executing the program, you will get the **Word document** as follows. * Visual Studio 2022. * Install **.NET desktop development** workload with necessary .NET Framework SDK. -Step 1: Create a new **.NET Framework console application** project. +Step 1: Create a new **.NET FrameWork console application** project. ![Create a Console application in Visual Studio](Console-Images/NET-FrameWork/Console-Template-Net-FrameWork.png) Step 2: Install [Syncfusion.DocIO.WinForms](https://www.nuget.org/packages/Syncfusion.DocIO.WinForms/) NuGet package as a reference to your Windows Forms application from the [NuGet.org](https://www.nuget.org/). diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Linux.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Linux.md index 490835beb..be274d809 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Linux.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Linux.md @@ -625,7 +625,7 @@ By executing the program, you will get the **Word document** as follows. The out Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. ## Frequently Asked Questions diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-MAUI.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-MAUI.md index 909480885..42cd74b62 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-MAUI.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-MAUI.md @@ -1197,4 +1197,4 @@ By executing the program, you will get the **Word document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/maui) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Mac.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Mac.md index 4d6ee6c3c..193a57298 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Mac.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Mac.md @@ -882,4 +882,4 @@ By executing the program, you will get the **Word document** as follows. The out Click [here](https://www.syncfusion.com/document-processing/word-framework/net-core) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-UWP.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-UWP.md index ab14fe152..054c32ac4 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-UWP.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-UWP.md @@ -342,4 +342,4 @@ By executing the program, you will get the Word document as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/uwp) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-WPF.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-WPF.md index 9c41e8517..cf1cab22b 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-WPF.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-WPF.md @@ -610,4 +610,4 @@ By executing the program, you will get the **Word document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-WinUI.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-WinUI.md index ce9b94b56..05988a2b8 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-WinUI.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-WinUI.md @@ -304,7 +304,7 @@ By executing the program, you will get the **Word document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/winui) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. ## WinUI UWP app @@ -651,4 +651,4 @@ async void Save(MemoryStream streams, string filename) Click [here](https://www.syncfusion.com/document-processing/word-framework/winui) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Windows-Forms.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Windows-Forms.md index 21dcbe05e..c648ec292 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Windows-Forms.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Windows-Forms.md @@ -644,4 +644,4 @@ By executing the program, you will get the **Word document** as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/net) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Xamarin.md b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Xamarin.md index d8da97b01..48133194d 100644 --- a/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Xamarin.md +++ b/Document-Processing/Word/Word-Library/NET/Create-Word-document-in-Xamarin.md @@ -412,4 +412,4 @@ By executing the program, you will get the Word document as follows. Click [here](https://www.syncfusion.com/document-processing/word-framework/xamarin) to explore the rich set of Syncfusion® Word library (DocIO) features. -An online sample link to [create a Word document](https://document.syncfusion.com/demos/word/helloworld#/tailwind) in ASP.NET Core. \ No newline at end of file +An online sample link to [create a Word document](https://ej2.syncfusion.com/aspnetcore/Word/HelloWorld#/material3) in ASP.NET Core. \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/Word-document/Compare-Word-documents.md b/Document-Processing/Word/Word-Library/NET/Word-document/Compare-Word-documents.md index e766aaa48..f9cdcaed9 100644 --- a/Document-Processing/Word/Word-Library/NET/Word-document/Compare-Word-documents.md +++ b/Document-Processing/Word/Word-Library/NET/Word-document/Compare-Word-documents.md @@ -246,7 +246,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to compare Word documents using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/comparedocuments#/tailwind). +* Explore how to compare Word documents using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/comparedocuments#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-With-Content-Controls.md b/Document-Processing/Word/Word-Library/NET/Working-With-Content-Controls.md index 4e402e256..995c29d37 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-With-Content-Controls.md +++ b/Document-Processing/Word/Word-Library/NET/Working-With-Content-Controls.md @@ -2599,8 +2599,8 @@ N> In the above-mentioned code samples, for Xamarin platforms the document is sa ## Online Demo -* Explore how to fill a form and protect the content controls in an existing Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/formfillingandprotection#/tailwind). -* See how to map custom XML parts to content controls in the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/xmlmapping#/tailwind). +* Explore how to fill a form and protect the content controls in an existing Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/formfillingandprotection#/bootstrap5). +* See how to map custom XML parts to content controls in the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/xmlmapping#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-With-Images.md b/Document-Processing/Word/Word-Library/NET/Working-With-Images.md index 3cd1e5b43..02186a174 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-With-Images.md +++ b/Document-Processing/Word/Word-Library/NET/Working-With-Images.md @@ -697,7 +697,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to insert an image into the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/imageinsertion#/tailwind). +* Explore how to insert an image into the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/imageinsertion#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-With-OLE-Objects.md b/Document-Processing/Word/Word-Library/NET/Working-With-OLE-Objects.md index d5d2a66ca..bacb4b8fe 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-With-OLE-Objects.md +++ b/Document-Processing/Word/Word-Library/NET/Working-With-OLE-Objects.md @@ -482,7 +482,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to insert an OLE Object into the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/insertoleobject#/tailwind). +* Explore how to insert an OLE Object into the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/insertoleobject#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Bookmarks.md b/Document-Processing/Word/Word-Library/NET/Working-with-Bookmarks.md index cd034133d..98fb42550 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Bookmarks.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Bookmarks.md @@ -1130,8 +1130,8 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to insert bookmarks into the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/bookmarks#/tailwind). -* See how to navigate between the bookmarks in a Word document and edit its content using bookmark navigation functionality using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/bookmarknavigation#/tailwind). +* Explore how to insert bookmarks into the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/bookmarks#/bootstrap5). +* See how to navigate between the bookmarks in a Word document and edit its content using bookmark navigation functionality using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/bookmarknavigation#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Charts.md b/Document-Processing/Word/Word-Library/NET/Working-with-Charts.md index 84b25e9a2..3cacc8019 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Charts.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Charts.md @@ -1582,6 +1582,12 @@ The following chart types are supported in DocIO. * [Surface_NoColor_3D](https://support.syncfusion.com/kb/article/12247/how-to-create-wireframe-3d-surface-chart-in-word-document-using-c) * [Surface_NoColor_Contour](https://support.syncfusion.com/kb/article/12245/how-to-create-wireframe-contour-surface-chart-in-word-document-using-c) * [WaterFall](https://support.syncfusion.com/kb/article/12243/how-to-create-waterfall-chart-in-word-document-using-c) +* Pareto +* Histogram +* Funnel +* Box_And_Whisker +* Treemap +* Sunburst ## Online Demo diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Fields.md b/Document-Processing/Word/Word-Library/NET/Working-with-Fields.md index f4a652e66..c49b28ac3 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Fields.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Fields.md @@ -1815,7 +1815,7 @@ document.Close() ## Online Demo -* Explore how to update fields in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/updatefields#/tailwind). +* Explore how to update fields in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/updatefields#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Find-and-Replace.md b/Document-Processing/Word/Word-Library/NET/Working-with-Find-and-Replace.md index f40aa0012..93d9ef539 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Find-and-Replace.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Find-and-Replace.md @@ -1926,9 +1926,9 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to find a specific text pattern using regular expression and highlight it in an existing Word document using find functionality using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/findandhighlight#/tailwind). -* See how to replace a specific text in the Word document with another text using the find and replace functionality using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/simplereplace#/tailwind). -* See how to replace a specific content in the Word document with another document using the find and replace functionality using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/advancedreplace#/tailwind). +* Explore how to find a specific text pattern using regular expression and highlight it in an existing Word document using find functionality using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/findandhighlight#/bootstrap5). +* See how to replace a specific text in the Word document with another text using the find and replace functionality using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/simplereplace#/bootstrap5). +* See how to replace a specific content in the Word document with another document using the find and replace functionality using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/advancedreplace#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Footnotes-and-endnotes.md b/Document-Processing/Word/Word-Library/NET/Working-with-Footnotes-and-endnotes.md index 7db088632..d39b59511 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Footnotes-and-endnotes.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Footnotes-and-endnotes.md @@ -892,4 +892,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to insert the footnotes and endnotes in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/footnotesandendnotes#/tailwind). +* Explore how to insert the footnotes and endnotes in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/footnotesandendnotes#/bootstrap5). diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Form-Fields.md b/Document-Processing/Word/Word-Library/NET/Working-with-Form-Fields.md index 92e8971c2..1108d9af6 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Form-Fields.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Form-Fields.md @@ -570,7 +570,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to create a simple job application form and fill the form using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/forms#/tailwind). +* Explore how to create a simple job application form and fill the form using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/forms#/bootstrap5). ## See also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-LaTeX.md b/Document-Processing/Word/Word-Library/NET/Working-with-LaTeX.md index 8fa3920e5..ff651b306 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-LaTeX.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-LaTeX.md @@ -9,9 +9,6 @@ documentation: UG # Create Equation using LaTeX The .NET Word (DocIO) library allows to create mathematical equation in Word document using **LaTeX**. -To quickly start working with LaTeX Equations, please check out this video: -{% youtube "https://www.youtube.com/watch?v=pdN4HNlKTJs" %} - ## Accent Add **accent** equation to a Word document using the LaTeX through [AppendMath](https://help.syncfusion.com/cr/document-processing/Syncfusion.DocIO.DLS.WParagraph.html#Syncfusion_DocIO_DLS_WParagraph_AppendMath_System_String_) API. @@ -2064,8 +2061,8 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to create a Word document with mathematical equations using LaTeX and the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/createusinglatex#/tailwind). -* See how to modify a mathematical equation using LaTeX in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/editusinglatex#/tailwind). +* Explore how to create a Word document with mathematical equations using LaTeX and the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/createusinglatex#/bootstrap5). +* See how to modify a mathematical equation using LaTeX in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/editusinglatex#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Macros.md b/Document-Processing/Word/Word-Library/NET/Working-with-Macros.md index d560a8968..42527e85b 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Macros.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Macros.md @@ -108,4 +108,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to preserve the macros in macro-enabled documents using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/macropreservation#/tailwind). +* Explore how to preserve the macros in macro-enabled documents using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/macropreservation#/bootstrap5). diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Mathematical-Equation.md b/Document-Processing/Word/Word-Library/NET/Working-with-Mathematical-Equation.md index cfbddb9e4..502f61347 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Mathematical-Equation.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Mathematical-Equation.md @@ -2103,8 +2103,8 @@ By executing the above code example, it generates output Word document as follow ## Online Demo -* Explore how to create a Word document with mathematical equations using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/createequation#/tailwind). -* See how to modify a mathematical equation in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/editequation#/tailwind). +* Explore how to create a Word document with mathematical equations using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/createequation#/bootstrap5). +* See how to modify a mathematical equation in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/editequation#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Paragraph.md b/Document-Processing/Word/Word-Library/NET/Working-with-Paragraph.md index 896576f5c..512011e30 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Paragraph.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Paragraph.md @@ -1733,9 +1733,9 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to apply built-in and custom styles to the contents of the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/styles#/tailwind). -* See how to create a Word document with right-to-left language text using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/rtl#/tailwind). -* See how to insert breaks to the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/insertbreak#/tailwind). +* Explore how to apply built-in and custom styles to the contents of the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/styles#/bootstrap5). +* See how to create a Word document with right-to-left language text using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/rtl#/bootstrap5). +* See how to insert breaks to the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/insertbreak#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Sections.md b/Document-Processing/Word/Word-Library/NET/Working-with-Sections.md index d8231768f..8380abb4e 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Sections.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Sections.md @@ -1520,7 +1520,7 @@ N> * And also, it is not feasible to get the page-wise details from Word documen ## Online Demo -* Explore how to insert headers and footers to the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/headerandfooter#/tailwind). +* Explore how to insert headers and footers to the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/headerandfooter#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Security.md b/Document-Processing/Word/Word-Library/NET/Working-with-Security.md index 4204f1cce..689d2f491 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Security.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Security.md @@ -925,5 +925,5 @@ N> 2. The **SingleUser** and **EditorGroup** properties cannot be set simultaneo ## Online Demo -* Explore how to encrypt and decrypt the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/encryptanddecrypt#/tailwind). -* See how to protect the Word document from editing using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/documentprotection#/tailwind). +* Explore how to encrypt and decrypt the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/encryptanddecrypt#/bootstrap5). +* See how to protect the Word document from editing using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/documentprotection#/bootstrap5). diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Shapes.md b/Document-Processing/Word/Word-Library/NET/Working-with-Shapes.md index 26aec9e12..315a0d467 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Shapes.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Shapes.md @@ -1244,8 +1244,8 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to create a Word document with shapes using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/autoshapes#/tailwind). -* See how to create a Word document with group shapes using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/groupshapes#/tailwind). +* Explore how to create a Word document with shapes using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/autoshapes#/bootstrap5). +* See how to create a Word document with group shapes using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/groupshapes#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-SmartArts.md b/Document-Processing/Word/Word-Library/NET/Working-with-SmartArts.md index 86532c16f..36762d2ca 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-SmartArts.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-SmartArts.md @@ -2027,5 +2027,5 @@ SmartArt typically contains graphic properties, including bounds information for ## Online Demo -* Explore how to create a Word document with SmartArt using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/createsmartart#/tailwind). -* Explore how to edit a Word document with SmartArt using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/editsmartart#/tailwind). +* Explore how to create a Word document with SmartArt using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/createsmartart#/bootstrap5). +* Explore how to edit a Word document with SmartArt using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/editsmartart#/bootstrap5). diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Table-Of-Contents.md b/Document-Processing/Word/Word-Library/NET/Working-with-Table-Of-Contents.md index 650c5f4b7..31979f261 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Table-Of-Contents.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Table-Of-Contents.md @@ -1651,8 +1651,8 @@ By executing the program, you will get the **Word document** as follows. ## Online Demo -* Explore how to insert and update the table of figures in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/tableoffigures#/tailwind). -* See how to insert and update the table of contents in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/tableofcontents#/tailwind). +* Explore how to insert and update the table of figures in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/tableoffigures#/bootstrap5). +* See how to insert and update the table of contents in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/tableofcontents#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Tables.md b/Document-Processing/Word/Word-Library/NET/Working-with-Tables.md index 62d492ded..83aa81fd9 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Tables.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Tables.md @@ -2128,8 +2128,8 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to format a table in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/formattable#/tailwind). -* See how to apply built-in and custom styles to the tables of the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/tablestyles#/tailwind). +* Explore how to format a table in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/formattable#/bootstrap5). +* See how to apply built-in and custom styles to the tables of the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/tablestyles#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/Working-with-Word-document.md b/Document-Processing/Word/Word-Library/NET/Working-with-Word-document.md index 6e2cd0095..e1348fe86 100644 --- a/Document-Processing/Word/Word-Library/NET/Working-with-Word-document.md +++ b/Document-Processing/Word/Word-Library/NET/Working-with-Word-document.md @@ -1073,8 +1073,8 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to clone and merge Word documents using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/cloneandmerge#/tailwind). -* See how to apply various document settings to the Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/documentsettings#/tailwind). +* Explore how to clone and merge Word documents using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/cloneandmerge#/bootstrap5). +* See how to apply various document settings to the Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/documentsettings#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/convert-markdown-to-word-document-in-csharp.md b/Document-Processing/Word/Word-Library/NET/convert-markdown-to-word-document-in-csharp.md index 911d996ed..0404b8bed 100644 --- a/Document-Processing/Word/Word-Library/NET/convert-markdown-to-word-document-in-csharp.md +++ b/Document-Processing/Word/Word-Library/NET/convert-markdown-to-word-document-in-csharp.md @@ -466,7 +466,7 @@ N> Hook the event handler before opening a Word document as per the above code e ## Online Demo -* Explore how to convert the Markdown file to Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/markdowntoword#/tailwind). +* Explore how to convert the Markdown file to Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/markdowntoword#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/convert-word-document-to-markdown-in-csharp.md b/Document-Processing/Word/Word-Library/NET/convert-word-document-to-markdown-in-csharp.md index ee71292ef..c604267a4 100644 --- a/Document-Processing/Word/Word-Library/NET/convert-word-document-to-markdown-in-csharp.md +++ b/Document-Processing/Word/Word-Library/NET/convert-word-document-to-markdown-in-csharp.md @@ -670,4 +670,4 @@ The following table shows the list of Word document elements supported in Word t ## Online Demo -* Explore how to convert the Word document to Markdown using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtomarkdown#/tailwind). +* Explore how to convert the Word document to Markdown using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtomarkdown#/bootstrap5). diff --git a/Document-Processing/Word/Word-Library/NET/html.md b/Document-Processing/Word/Word-Library/NET/html.md index 811e713f1..2411f958b 100644 --- a/Document-Processing/Word/Word-Library/NET/html.md +++ b/Document-Processing/Word/Word-Library/NET/html.md @@ -1270,8 +1270,8 @@ Underline types and colors are ignored. ## Online Demo -* Explore how to convert a Word document to HTML using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtohtml#/tailwind). -* See how to convert HTML to a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/htmltoword#/tailwind). +* Explore how to convert a Word document to HTML using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtohtml#/bootstrap5). +* See how to convert HTML to a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/htmltoword#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-events.md b/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-events.md index 0f9bff228..1acf22613 100644 --- a/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-events.md +++ b/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-events.md @@ -910,7 +910,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to format the mail merged data using mail merge events using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/mailmergeevent#/tailwind). +* Explore how to format the mail merged data using mail merge events using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/mailmergeevent#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-for-group.md b/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-for-group.md index eabea6b92..5e1393c59 100644 --- a/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-for-group.md +++ b/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-for-group.md @@ -533,4 +533,4 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to do a mail merge for a group in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/employeereport#/tailwind). \ No newline at end of file +* Explore how to do a mail merge for a group in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/employeereport#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-for-nested-groups.md b/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-for-nested-groups.md index 09c23abad..11aa5774d 100644 --- a/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-for-nested-groups.md +++ b/Document-Processing/Word/Word-Library/NET/mail-merge/mail-merge-for-nested-groups.md @@ -748,4 +748,4 @@ By executing the above code example, it generates the resultant Word document as ## Online Demo -* Explore how to do a mail merge for a nested group in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/nestedmailmerge#/tailwind). \ No newline at end of file +* Explore how to do a mail merge for a nested group in a Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/nestedmailmerge#/bootstrap5). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Library/NET/rtf.md b/Document-Processing/Word/Word-Library/NET/rtf.md index ea0129134..afacb1a61 100644 --- a/Document-Processing/Word/Word-Library/NET/rtf.md +++ b/Document-Processing/Word/Word-Library/NET/rtf.md @@ -105,8 +105,8 @@ The supported and unsupported features of DocIO based on file formats can be ref ## Online Demo -* Explore how to convert the RTF file to Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/rtftodoc#/tailwind). -* See how to convert a Word document to an RTF file using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtortf#/tailwind). +* Explore how to convert the RTF file to Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/rtftodoc#/bootstrap5). +* See how to convert a Word document to an RTF file using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtortf#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Library/NET/word-file-formats.md b/Document-Processing/Word/Word-Library/NET/word-file-formats.md index 64eca4bef..c11d82060 100644 --- a/Document-Processing/Word/Word-Library/NET/word-file-formats.md +++ b/Document-Processing/Word/Word-Library/NET/word-file-formats.md @@ -1036,5 +1036,5 @@ You can download a complete working sample from [GitHub](https://github.com/Sync ## Online Demo -* Explore how to convert the Word document to Word processing XML using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordtowordml#/tailwind). -* See how to convert the Word processing XML to Word document using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/wordmltoword#/tailwind). +* Explore how to convert the Word document to Word processing XML using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordtowordml#/bootstrap5). +* See how to convert the Word processing XML to Word document using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/wordmltoword#/bootstrap5). diff --git a/Document-Processing/Word/Word-Library/NET/word-to-odt.md b/Document-Processing/Word/Word-Library/NET/word-to-odt.md index 44d2a07dc..d4b7e197c 100644 --- a/Document-Processing/Word/Word-Library/NET/word-to-odt.md +++ b/Document-Processing/Word/Word-Library/NET/word-to-odt.md @@ -758,4 +758,4 @@ Yes

## Online Demo -* Explore how to convert the Word document to ODT using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/doctoodt#/tailwind). +* Explore how to convert the Word document to ODT using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/doctoodt#/bootstrap5). diff --git a/Document-Processing/Word/Word-Library/NET/working-with-mail-merge.md b/Document-Processing/Word/Word-Library/NET/working-with-mail-merge.md index 4b7a203e7..d5c329ea5 100644 --- a/Document-Processing/Word/Word-Library/NET/working-with-mail-merge.md +++ b/Document-Processing/Word/Word-Library/NET/working-with-mail-merge.md @@ -292,7 +292,7 @@ You can restart the list numbering in a Word document during Mail merge. For fur ## Online Demo -* Explore how to generate a letter using mail merge functionality using the .NET Word Library (DocIO) in a live demo [here](https://document.syncfusion.com/demos/word/letterformat#/tailwind). +* Explore how to generate a letter using mail merge functionality using the .NET Word Library (DocIO) in a live demo [here](https://ej2.syncfusion.com/aspnetcore/word/letterformat#/bootstrap5). ## See Also diff --git a/Document-Processing/Word/Word-Processor/angular/paragraph-format.md b/Document-Processing/Word/Word-Processor/angular/paragraph-format.md index e54ff618c..bc03aeb24 100644 --- a/Document-Processing/Word/Word-Processor/angular/paragraph-format.md +++ b/Document-Processing/Word/Word-Processor/angular/paragraph-format.md @@ -76,11 +76,8 @@ this.documentEditor.selection.paragraphFormat.lineSpacing= 6.5; // Float value You can define the spacing before or after the paragraph by using the following sample code. ```typescript -// Set line spacing type this.documentEditor.selection.paragraphFormat.beforeSpacing= 24; -// Set line spacing value (supports both integer and float) -this.documentEditor.selection.paragraphFormat.lineSpacing= 6; // Integer value -this.documentEditor.selection.paragraphFormat.lineSpacing= 6.5; // Float value +this.documentEditor.selection.paragraphFormat.afterSpacing= 24; ``` You can also set automatic spacing before and after the paragraph by using the following sample code.