Skip to content

Commit 5216fda

Browse files
Merged pull request #2262 from mercy-orejo/SEO-216503-SERPSTAT-Issue-fixes-Help-Domain-Redirect-error-Doc-processing
SEO-216503-SERPSTAT-Issue-fixes-Help-Domain-Redirect-error-Doc-proces…
2 parents 769e8a8 + e8a595d commit 5216fda

5 files changed

Lines changed: 42 additions & 42 deletions

Document-Processing/Excel/Excel-Library/NET/faqs/how-to-avoid-exception-when-adding-worksheets-with-same-name.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: UG
88

99
# How to avoid exception when adding worksheets with same name?
1010

11-
Microsoft Excel throws exception when adding worksheet with existing worksheet name in a workbook and XlsIO does the same. But in some case, if you want to add worksheets with the same name using XlsIO then you can avoid the exception in XlsIO by setting [IgnoreSheetNameException](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IApplication.html#Syncfusion_XlsIO_IApplication_IgnoreSheetNameException) property of [IApplication](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IApplication.html) as true.
11+
Microsoft Excel throws exception when adding worksheet with existing worksheet name in a workbook and XlsIO does the same. But in some case, if you want to add worksheets with the same name using XlsIO then you can avoid the exception in XlsIO by setting [IgnoreSheetNameException](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IApplication.html#Syncfusion_XlsIO_IApplication_IgnoreSheetNameException) property of [IApplication](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IApplication.html) as true.
1212

1313
The following code snippet shows how to add two worksheets with same name in a workbook.
1414

@@ -72,9 +72,9 @@ End Using
7272

7373
## See Also
7474

75-
* [How to overcome UnauthorizedAccessException?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-overcome-unauthorizedaccessexception)
76-
* [How to overcome StackOverflow exception with IWorksheet Calculate()?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-overcome-stackoverflow-exception-with-iworksheet-calculate)
77-
* [What are the known exceptions of XlsIO?](https://help.syncfusion.com/file-formats/xlsio/known-exceptions)
78-
* [How to create a named range in Excel?](https://help.syncfusion.com/file-formats/xlsio/migrate-from-office-automation-to-syncfusion-xlsio/create-named-range-in-excel)
79-
* [How to use Named Ranges with XlsIO?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-use-named-ranges-with-xlsio)
75+
* [How to overcome UnauthorizedAccessException?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-overcome-unauthorizedaccessexception)
76+
* [How to overcome StackOverflow exception with IWorksheet Calculate()?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-overcome-stackoverflow-exception-with-iworksheet-calculate)
77+
* [What are the known exceptions of XlsIO?](https://help.syncfusion.com/document-processing/excel/excel-library/net/known-exceptions)
78+
* [How to create a named range in Excel?](https://help.syncfusion.com/document-processing/excel/excel-library/net/migrate-from-office-automation-to-syncfusion-xlsio/create-named-range-in-excel)
79+
* [How to use Named Ranges with XlsIO?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-use-named-ranges-with-xlsio)
8080

Document-Processing/Excel/Excel-Library/NET/faqs/how-to-hide-the-summary-rows-and-columns-using-xlsio.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: UG
88

99
# How to hide the summary rows and columns using XlsIO?
1010

11-
You can hide the summary rows and columns by using the [IsSummaryRowBelow](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IPageSetup.html#Syncfusion_XlsIO_IPageSetup_IsSummaryRowBelow) and [IsSummaryColumnRight](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IPageSetup.html#Syncfusion_XlsIO_IPageSetup_IsSummaryColumnRight) properties. The following code snippet illustrates this.
11+
You can hide the summary rows and columns by using the [IsSummaryRowBelow](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IPageSetup.html#Syncfusion_XlsIO_IPageSetup_IsSummaryRowBelow) and [IsSummaryColumnRight](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IPageSetup.html#Syncfusion_XlsIO_IPageSetup_IsSummaryColumnRight) properties. The following code snippet illustrates this.
1212

1313
{% tabs %}
1414
{% highlight c# tabtitle="C# [Cross-platform]" %}
@@ -68,9 +68,9 @@ End Using
6868

6969
## See Also
7070

71-
* [What is the maximum range of Rows and Columns?](https://help.syncfusion.com/file-formats/xlsio/faqs/what-is-the-maximum-range-of-rows-and-columns)
72-
* [How to unfreeze the rows and columns in XlsIO?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-unfreeze-the-rows-and-columns-in-xlsio)
73-
* [How to sort two or more columns in a pivot table?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-sort-two-or-more-columns-in-a-pivot-table)
74-
* [How to hide Excel worksheets?](https://help.syncfusion.com/file-formats/xlsio/migrate-from-office-automation-to-syncfusion-xlsio/hide-excel-worksheets)
75-
* [How to show or hide rows and columns?](https://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation#show-or-hide-rows-and-columns)
76-
* [How to show or hide specific range?](https://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation#show-or-hide-specific-range)
71+
* [What is the maximum range of Rows and Columns?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/what-is-the-maximum-range-of-rows-and-columns)
72+
* [How to unfreeze the rows and columns in XlsIO?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-unfreeze-the-rows-and-columns-in-xlsio)
73+
* [How to sort two or more columns in a pivot table?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-sort-two-or-more-columns-in-a-pivot-table)
74+
* [How to hide Excel worksheets?](https://help.syncfusion.com/document-processing/excel/excel-library/net/migrate-from-office-automation-to-syncfusion-xlsio/hide-excel-worksheets)
75+
* [How to show or hide rows and columns?](https://help.syncfusion.com/document-processing/excel/excel-library/net/worksheet-rows-and-columns-manipulation#show-or-hide-rows-and-columns)
76+
* [How to show or hide specific range?](https://help.syncfusion.com/document-processing/excel/excel-library/net/worksheet-rows-and-columns-manipulation#show-or-hide-specific-range)

Document-Processing/Excel/Excel-Library/NET/faqs/how-to-open-an-excel-file-from-stream.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ End Using
5353

5454
## See Also
5555

56-
* [How to open an Excel 2013 Macro Enabled Template?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-open-an-excel-2013-macro-enabled-template)
57-
* [How to create and open Excel Template files by using XlsIO?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-create-and-open-excel-template-files-by-using-xlsio)
58-
* [How to open an existing workbook from stream?](https://help.syncfusion.com/file-formats/xlsio/loading-and-saving-workbook#opening-an-existing-workbook-from-stream)
59-
* [How to open a CSV file?](https://help.syncfusion.com/file-formats/xlsio/working-with-excel-worksheet#open-a-csv-file)
60-
* [How to open an existing XLSX workbook and save it as XLS?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-open-an-existing-xlsx-workbook-and-save-it-as-xls)
61-
* [How to resolve the File does not contain workbook stream error in Syncfusion.XlsIO.Base.dll?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-resolve-the-file-does-not-contain-workbook-stream-error)
62-
* [How to resolve Excel cannot open the file filename.xlsx... error?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-resolve-excel-cannot-open-the-file-because-the-file-format-for-the-file-extension-is-not-valid)
63-
* [How to save a file to stream?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-save-a-file-to-stream)
64-
* [How to merge excel files from more than one workbook to a single file?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-merge-excel-files-from-more-than-one-workbook-to-a-single-file)
65-
* [Does XlsIO support Excel files with macros that are digitally signed?](https://help.syncfusion.com/file-formats/xlsio/faqs/does-xlsio-support-excel-files-with-macros-that-are-digitally-signed)
66-
* [How does Excel file with uninstalled fonts is converted to PDF/Image?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-does-excel-file-with-uninstalled-fonts-is-converted-to-pdf-image)
56+
* [How to open an Excel 2013 Macro Enabled Template?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-open-an-excel-2013-macro-enabled-template)
57+
* [How to create and open Excel Template files by using XlsIO?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-create-and-open-excel-template-files-by-using-xlsio)
58+
* [How to open an existing workbook from stream?](https://help.syncfusion.com/document-processing/excel/excel-library/net/loading-and-saving-workbook#opening-an-existing-workbook-from-stream)
59+
* [How to open a CSV file?](https://help.syncfusion.com/document-processing/excel/excel-library/net/working-with-excel-worksheet#open-a-csv-file)
60+
* [How to open an existing XLSX workbook and save it as XLS?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-open-an-existing-xlsx-workbook-and-save-it-as-xls)
61+
* [How to resolve the File does not contain workbook stream error in Syncfusion.XlsIO.Base.dll?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-resolve-the-file-does-not-contain-workbook-stream-error)
62+
* [How to resolve Excel cannot open the file filename.xlsx... error?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-resolve-excel-cannot-open-the-file-because-the-file-format-for-the-file-extension-is-not-valid)
63+
* [How to save a file to stream?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-save-a-file-to-stream)
64+
* [How to merge excel files from more than one workbook to a single file?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-merge-excel-files-from-more-than-one-workbook-to-a-single-file)
65+
* [Does XlsIO support Excel files with macros that are digitally signed?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/does-xlsio-support-excel-files-with-macros-that-are-digitally-signed)
66+
* [How does Excel file with uninstalled fonts is converted to PDF/Image?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-does-excel-file-with-uninstalled-fonts-is-converted-to-pdf-image)
6767

Document-Processing/Excel/Excel-Library/NET/faqs/how-to-overcome-unauthorizedaccessexception.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ First, check whether you can access the folder and the file directly. Then, righ
1414

1515
## See Also
1616

17-
* [How to overcome StackOverflow exception with IWorksheet Calculate()?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-overcome-stackoverflow-exception-with-iworksheet-calculate)
18-
* [How to avoid exception when adding worksheets with same name?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-avoid-exception-when-adding-worksheets-with-same-name)
19-
* [What are the known exceptions of XlsIO?](https://help.syncfusion.com/file-formats/xlsio/known-exceptions)
20-
* [How to secure Excel documents?](https://help.syncfusion.com/file-formats/xlsio/security)
17+
* [How to overcome StackOverflow exception with IWorksheet Calculate()?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-overcome-stackoverflow-exception-with-iworksheet-calculate)
18+
* [How to avoid exception when adding worksheets with same name?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-avoid-exception-when-adding-worksheets-with-same-name)
19+
* [What are the known exceptions of XlsIO?](https://help.syncfusion.com/document-processing/excel/excel-library/net/known-exceptions)
20+
* [How to secure Excel documents?](https://help.syncfusion.com/document-processing/excel/excel-library/net/security)

Document-Processing/Excel/Excel-Library/NET/faqs/migrate-from-net-framework-to-net-core.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ Not needed. Same functionalities are moved to {{'[Syncfusion.XlsIORenderer](http
7070
</tr>
7171
<tr>
7272
<td>
73-
{{'[Syncfusion.ExcelToPdfConverter](https://help.syncfusion.com/cr/file-formats/Syncfusion.ExcelToPdfConverter.html)'| markdownify}}
73+
{{'[Syncfusion.ExcelToPdfConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPdfConverter.html)'| markdownify}}
7474
</td>
7575
<td>
7676
{{'[Syncfusion.XlsIORenderer](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.XlsIORenderer.html)'| markdownify}}
7777
</td>
7878
</tr>
7979
<tr>
8080
<td>
81-
{{'[Syncfusion.ExcelChartToImageConverter](https://help.syncfusion.com/cr/file-formats/Syncfusion.ExcelChartToImageConverter.html)'| markdownify}}
81+
{{'[Syncfusion.ExcelChartToImageConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelChartToImageConverter.html)'| markdownify}}
8282
</td>
8383
<td>
8484
{{'[Syncfusion.XlsIORenderer](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.XlsIORenderer.html)'| markdownify}}
@@ -98,23 +98,23 @@ Not needed. Same functionalities are moved to {{'[Syncfusion.XlsIORenderer](http
9898
</tr>
9999
<tr>
100100
<td>
101-
{{'[ExcelToPDFConverter](https://help.syncfusion.com/cr/file-formats/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverter.html)'| markdownify}}
101+
{{'[ExcelToPDFConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverter.html)'| markdownify}}
102102
</td>
103103
<td>
104104
{{'[XlsIORenderer](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.XlsIORenderer.html)'| markdownify}}
105105
</td>
106106
</tr>
107107
<tr>
108108
<td>
109-
{{'[ExcelChartToImageConverter](https://help.syncfusion.com/cr/file-formats/Syncfusion.ExcelChartToImageConverter.ChartToImageConverter.html)'| markdownify}}
109+
{{'[ExcelChartToImageConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelChartToImageConverter.ChartToImageConverter.html)'| markdownify}}
110110
</td>
111111
<td>
112112
{{'[XlsIORenderer ](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.XlsIORenderer.html)'| markdownify}}
113113
</td>
114114
</tr>
115115
<tr>
116116
<td>
117-
{{'[ExcelToPdfConverterSettings](https://help.syncfusion.com/cr/file-formats/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverterSettings.html)'| markdownify}}
117+
{{'[ExcelToPdfConverterSettings](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverterSettings.html)'| markdownify}}
118118
</td>
119119
<td>
120120
{{'[XlsIORendererSettings](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.XlsIORenderer.XlsIORendererSettings.html)'| markdownify}}
@@ -134,7 +134,7 @@ Not needed. Same functionalities are moved to {{'[Syncfusion.XlsIORenderer](http
134134
</tr>
135135
<tr>
136136
<td>
137-
{{'[IApplication ChartToImageConverter](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IApplication.html#Syncfusion_XlsIO_IApplication_ChartToImageConverter)'| markdownify}}
137+
{{'[IApplication ChartToImageConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IApplication.html#Syncfusion_XlsIO_IApplication_ChartToImageConverter)'| markdownify}}
138138
</td>
139139
<td>
140140
{{'[IApplication XlsIORenderer](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.XlsIORenderer.XlsIORenderer.html)'| markdownify}}
@@ -154,63 +154,63 @@ Not needed. Same functionalities are moved to {{'[Syncfusion.XlsIORenderer](http
154154
</tr>
155155
<tr>
156156
<td>
157-
{{'[IWorkbooks Open(string filename)](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbooks.html#Syncfusion_XlsIO_IWorkbooks_Open_System_String_)'| markdownify}}
157+
{{'[IWorkbooks Open(string filename)](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbooks.html#Syncfusion_XlsIO_IWorkbooks_Open_System_String_)'| markdownify}}
158158
</td>
159159
<td>
160160
The document can be opened as a file stream from the file system using IWorkbooks Open(Stream stream)
161161
</td>
162162
</tr>
163163
<tr>
164164
<td>
165-
{{'[IWorkbook SaveAs(string filename, HttpResponse Response, ExcelDownloadType type)](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAs_System_String_Syncfusion_XlsIO_ExcelSaveType_System_Web_HttpResponse_)'| markdownify}}
165+
{{'[IWorkbook SaveAs(string filename, HttpResponse Response, ExcelDownloadType type)](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAs_System_String_Syncfusion_XlsIO_ExcelSaveType_System_Web_HttpResponse_)'| markdownify}}
166166
</td>
167167
<td>
168168
The document can be saved as a file stream to the file system using IWorkbook SaveAs(Stream stream)
169169
</td>
170170
</tr>
171171
<tr>
172172
<td>
173-
{{'[IWorkbook SaveAsJson(string filename)](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAsJson_System_String_)'| markdownify}}
173+
{{'[IWorkbook SaveAsJson(string filename)](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAsJson_System_String_)'| markdownify}}
174174
</td>
175175
<td>
176176
The document can be saved as a file stream to the file system using IWorkbook SaveAsJson(Stream stream)
177177
</td>
178178
</tr>
179179
<tr>
180180
<td>
181-
{{'[IWorksheet ImportHtmlTable(string filename, int row, int column)](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorksheet.html#Syncfusion_XlsIO_IWorksheet_ImportHtmlTable_System_String_System_Int32_System_Int32_)'| markdownify}}
181+
{{'[IWorksheet ImportHtmlTable(string filename, int row, int column)](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorksheet.html#Syncfusion_XlsIO_IWorksheet_ImportHtmlTable_System_String_System_Int32_System_Int32_)'| markdownify}}
182182
</td>
183183
<td>
184184
The HTML table can be imported as a file stream from the file system using IWorksheet ImportHtmlTable(Stream stream, int row, int column)
185185
</td>
186186
</tr>
187187
<tr>
188188
<td>
189-
{{'[IPictures Add(int row, int column, string filename)](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IPictures.html#Syncfusion_XlsIO_IPictures_AddPicture_System_Int32_System_Int32_System_Int32_System_Int32_System_String_)'| markdownify}}
189+
{{'[IPictures Add(int row, int column, string filename)](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IPictures.html#Syncfusion_XlsIO_IPictures_AddPicture_System_Int32_System_Int32_System_Int32_System_Int32_System_String_)'| markdownify}}
190190
</td>
191191
<td>
192192
A picture can be added as a stream from the file system using IPictures Add(int row, int column, Stream stream)
193193
</td>
194194
</tr>
195195
<tr>
196196
<td>
197-
{{'[IListObject Refresh()](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IListObject.html#Syncfusion_XlsIO_IListObject_Refresh)'| markdownify}}
197+
{{'[IListObject Refresh()](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IListObject.html#Syncfusion_XlsIO_IListObject_Refresh)'| markdownify}}
198198
</td>
199199
<td>
200200
Not supported due to .NET Framework limitation.
201201
</td>
202202
</tr>
203203
<tr>
204204
<td>
205-
{{'[ExcelToPdfConverter ExcelToPdfConverter(IWorkbook workbook)](https://help.syncfusion.com/cr/file-formats/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverter.html#Syncfusion_ExcelToPdfConverter_ExcelToPdfConverter__ctor_Syncfusion_XlsIO_IWorkbook_)'| markdownify}}
205+
{{'[ExcelToPdfConverter ExcelToPdfConverter(IWorkbook workbook)](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverter.html#Syncfusion_ExcelToPdfConverter_ExcelToPdfConverter__ctor_Syncfusion_XlsIO_IWorkbook_)'| markdownify}}
206206
</td>
207207
<td>
208208
{{'[XlsIORenderer XlsIORenderer()](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.XlsIORenderer.XlsIORenderer.html#Syncfusion_XlsIORenderer_XlsIORenderer__ctor)'| markdownify}}
209209
</td>
210210
</tr>
211211
<tr>
212212
<td>
213-
{{'[ExcelToPdfConverter Convert()](https://help.syncfusion.com/cr/file-formats/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverter.html#Syncfusion_ExcelToPdfConverter_ExcelToPdfConverter_Convert)'| markdownify}}
213+
{{'[ExcelToPdfConverter Convert()](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverter.html#Syncfusion_ExcelToPdfConverter_ExcelToPdfConverter_Convert)'| markdownify}}
214214
</td>
215215
<td>
216216
{{'[XlsIORenderer ConvertToPDF(IWorkbook workbook)](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.XlsIORenderer.XlsIORenderer.html#Syncfusion_XlsIORenderer_XlsIORenderer_ConvertToPDF_Syncfusion_XlsIO_IWorkbook_)'| markdownify}}

0 commit comments

Comments
 (0)