Skip to content

Commit 4560379

Browse files
committed
Task(218028);SERPSTAT-Issue-fixes-Help-Domain-Redirect-Error-Doc-processing-6
1 parent 73a2d5d commit 4560379

6 files changed

Lines changed: 18 additions & 18 deletions

File tree

Document-Processing/Excel/Excel-Library/NET/FAQ.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ The frequently asked questions in Essential<sup>&reg;</sup> XlsIO are listed bel
8585
* [How to resolve performance issue when deleting a large number of rows?](faqs/how-to-resolve-performance-issue-when-deleting-a-large-number-of-rows)
8686
* [How to hide columns using column name?](faqs/how-to-hide-columns-using-column-name)
8787
* [How to convert xls document to xlsx format document?](faqs/how-to-convert-xls-document-to-xlsx-format-document)
88-
* [How to access a table in Excel document using the table name?](faqs/how-to-access-a-table-in-Excel-document-using-the-table-name)
88+
* [How to access a table in Excel document using the table name?](faqs/how-to-access-a-table-in-excel-document-using-the-table-name)
8989
* [How to check whether the loaded file is an Excel file?](faqs/how-to-check-whether-the-loaded-file-is-an-excel-file)
9090
* [How to insert a picture into a cell in an Excel document?](faqs/how-to-insert-a-picture-into-a-cell-in-an-excel-document)
9191
* [How to get the RGB color value for the applied cell color?](faqs/how-to-get-the-rgb-color-value-for-the-applied-cell-color)
@@ -115,13 +115,13 @@ The frequently asked questions in Essential<sup>&reg;</sup> XlsIO are listed bel
115115
* [How to set and format time values in Excel using TimeSpan?](faqs/how-to-set-and-format-time-values-in-excel-using-timespan)
116116
* [How to set the default font and font size in an Excel Workbook?](faqs/how-to-set-the-default-font-and-font-size-in-an-Excel-workbook)
117117
* [How to set traffic lights icon in Excel conditional formatting using C#?](faqs/how-to-set-traffic-lights-icon-in-Excel-conditional-formatting-using-C#)
118-
* [How to apply TimePeriod conditional formatting in Excel using C#?](faqs/how-to-apply-TimePeriod-conditional-formatting-in-Excel)
118+
* [How to apply TimePeriod conditional formatting in Excel using C#?](faqs/how-to-apply-timeperiod-conditional-formatting-in-excel)
119119
* [How to get the list of worksheet names in an Excel workbook?](faqs/how-to-get-the-list-of-worksheet-names-in-an-Excel-workbook)
120120
* [How to switch chart series data interpretation from horizontal (rows) to vertical (columns) in Excel?](faqs/how-to-switch-chart-series-data-interpretation-from-horizontal-(rows)-to-vertical-(columns)-in-excel)
121121
* [How to add Oval shape to Excel chart using XlsIO?](faqs/how-to-add-oval-shape-to-excel-chart)
122122
* [How to show the leader line on Excel chart?](faqs/how-to-show-the-leader-line-on-excel-chart)
123123
* [How to set the background color for Excel Chart in C#?](faqs/how-to-set-the-background-color-for-Excel-chart-in-C#)
124-
* [How to override an Excel document using C#?](faqs/how-to-override-an-Excel-document-using-C#)
124+
* [How to override an Excel document using C#?](faqs/how-to-override-an-excel-document#)
125125
* [Does XlsIO support converting an empty Excel document to PDF?](faqs/does-xlsio-support-converting-an-empty-Excel-document-to-PDF)
126126
* [What is the maximum supported text length for data validation in Excel?](faqs/what-is-the-maximum-supported-text-length-for-data-validation-in-excel)
127127
* [How to set column width for a pivot table range in an Excel Document?](faqs/how-to-set-column-width-for-a-pivot-table-range-in-an-Excel-Document)

Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-uwp-c-sharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: UG
99

1010
## Opening an existing workbook
1111

12-
You can open an existing workbook by using the overloads of [Open](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbooks.html#Syncfusion_XlsIO_IWorkbooks_Open_System_String_) methods of [IWorkbooks](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbooks.html) interface.
12+
You can open an existing workbook by using the overloads of [Open](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbooks.html#Syncfusion_XlsIO_IWorkbooks_Open_System_String_) methods of [IWorkbooks](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbooks.html) interface.
1313

1414
{% tabs %}
1515
{% highlight c# tabtitle="C# [Windows-specific]" %}
@@ -33,7 +33,7 @@ IWorkbook workbook = await application.Workbooks.OpenAsync(file, ExcelOpenType.A
3333

3434
## Saving an Excel workbook
3535

36-
You can also save the created or manipulated workbook using overloads of [SaveAs](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAs_System_String_System_Web_HttpResponse_Syncfusion_XlsIO_ExcelDownloadType_Syncfusion_XlsIO_ExcelHttpContentType_) methods.
36+
You can also save the created or manipulated workbook using overloads of [SaveAs](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IWorkbook.html#Syncfusion_XlsIO_IWorkbook_SaveAs_System_String_System_Web_HttpResponse_Syncfusion_XlsIO_ExcelDownloadType_Syncfusion_XlsIO_ExcelHttpContentType_) methods.
3737

3838
{% tabs %}
3939
{% highlight c# tabtitle="C# [Windows-specific]" %}

Document-Processing/Excel/Excel-Library/NET/faqs/does-xlsio-support-working-with-excel-files-in-net6.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Yes. XlsIO allows you to create, edit and convert Excel files in .NET 6.0
1111

1212
## See Also
1313

14-
* [Does XlsIO support password protected macro in the Excel documents?](https://help.syncfusion.com/file-formats/xlsio/faqs/does-xlsio-support-password-protected-macro-in-the-excel-documents)
15-
* [Does Essential&reg; XlsIO provide support for Client Profile?](https://help.syncfusion.com/file-formats/xlsio/faqs/does-essential-xlsio-provide-support-for-client-profile)
16-
* [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)
17-
* [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)
18-
* [Does XlsIO support password protected macro in the Excel documents?](https://help.syncfusion.com/file-formats/xlsio/faqs/does-xlsio-support-password-protected-macro-in-the-excel-documents)
19-
* [How to open an Excel document that is already open in MS-Excel?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-open-an-excel-document-that-is-already-open-in-msexcel)
14+
* [Does XlsIO support password protected macro in the Excel documents?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/does-xlsio-support-password-protected-macro-in-the-excel-documents)
15+
* [Does Essential&reg; XlsIO provide support for Client Profile?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/does-essential-xlsio-provide-support-for-client-profile)
16+
* [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)
17+
* [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)
18+
* [Does XlsIO support password protected macro in the Excel documents?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/does-xlsio-support-password-protected-macro-in-the-excel-documents)
19+
* [How to open an Excel document that is already open in MS-Excel?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-open-an-excel-document-that-is-already-open-in-msexcel)

Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ Hence, we have used PNG format as default for exporting the images into PDF. If
2020

2121
## See Also
2222

23-
* [How to export quality image?](https://help.syncfusion.com/file-formats/xlsio/excel-to-pdf-converter-settings#export-quality-image)
24-
* [How to convert Worksheet to Image?](https://help.syncfusion.com/file-formats/xlsio/worksheet-to-image-conversion)
25-
* [How to convert Chart to Image?](https://help.syncfusion.com/file-formats/xlsio/chart-to-image-conversion)
23+
* [How to export quality image?](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-pdf/net/excel-to-pdf-converter-settings#export-quality-image)
24+
* [How to convert Worksheet to Image?](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-image/net/worksheet-to-image-conversion)
25+
* [How to convert Chart to Image?](https://help.syncfusion.com/document-processing/excel/conversions/chart-to-image/net/chart-to-image-conversion)

Document-Processing/PDF/PDF-Library/NET/Working-with-Document-Conversions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
258258

259259
## Converting Excel documents to PDF
260260

261-
[ExcelToPdfConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPDFConverter.Base~Syncfusion.ExcelToPdfConverter.ExcelToPdfConverter.html) is responsible for converting an Excel document into PDF. Essential<sup>&reg;</sup> PDF allows you to convert an entire workbook or a single worksheet into PDF document. Refer to the following links for assemblies/nuget packages required based on platforms to convert Excel document into PDF.
261+
[ExcelToPdfConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.ExcelToPdfConverter.ExcelToPdfConverter.html) is responsible for converting an Excel document into PDF. Essential<sup>&reg;</sup> PDF allows you to convert an entire workbook or a single worksheet into PDF document. Refer to the following links for assemblies/nuget packages required based on platforms to convert Excel document into PDF.
262262

263263
* [Assemblies Information](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/assemblies-required#converting-excel-document-to-pdf)
264264
* [NuGet Information](https://help.syncfusion.com/document-processing/pdf/pdf-library/net/nuget-packages-required#converting-excel-document-to-pdf)
@@ -524,7 +524,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
524524

525525
### Excel with Chart to PDF
526526

527-
To preserve the charts during Excel to PDF conversion, you should initialize the [ChartToImageConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IApplication.html#Syncfusion_XlsIO_IApplication_ChartToImageConverter) of [IApplication](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.Base~Syncfusion.XlsIO.IApplication.html) interface, otherwise the charts present in worksheet will get skipped. The following code illustrate how to convert an Excel with chart to PDF document.
527+
To preserve the charts during Excel to PDF conversion, you should initialize the [ChartToImageConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IApplication.html#Syncfusion_XlsIO_IApplication_ChartToImageConverter) of [IApplication](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IApplication.html) interface, otherwise the charts present in worksheet will get skipped. The following code illustrate how to convert an Excel with chart to PDF document.
528528

529529
{% tabs %}
530530

@@ -698,7 +698,7 @@ For ASP.NET Core and Xamarin applications
698698
* using Syncfusion.DocIORenderer
699699
* using Syncfusion.Pdf
700700

701-
[DocToPDFConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.DocToPDFConverter.Base~Syncfusion.DocToPDFConverter.DocToPDFConverter.html) class is responsible for converting a RTF to PDF. The following code snippet illustrates how to convert a RTF to PDF document.
701+
[DocToPDFConverter](https://help.syncfusion.com/cr/document-processing/Syncfusion.DocToPDFConverter.DocToPDFConverter.html) class is responsible for converting a RTF to PDF. The following code snippet illustrates how to convert a RTF to PDF document.
702702

703703
{% tabs %}
704704

Document-Processing/Word/Conversions/Word-To-PDF/NET/Word-to-pdf-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
822822
Essential<sup>&reg;</sup> DocIO now allows hyphenating text in a Word document while converting it to PDF format based on the given language dictionaries. These dictionaries prescribe where words of a specific language can be hyphenated. Use the dictionary files as OpenOffice format dictionary.
823823

824824
N> 1. If automatic hyphenation is not enabled in the Word document, you can enable it by using [WordDocument.Properties.Hyphenation.AutoHyphenation](https://help.syncfusion.com/cr/document-processing/Syncfusion.DocIO.DLS.Hyphenation.html#Syncfusion_DocIO_DLS_Hyphenation_AutoHyphenation) of DocIO.
825-
N> 2. After converting Word documents to PDF, release any dictionary file streams to avoid memory leaks. Call [Hyphenator.UnloadDictionaries()](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocIO.DLS.Hyphenator.html#Syncfusion_DocIO_DLS_Hyphenator_UnloadDictionaries) to free hyphenation resources and optimize performance.
825+
N> 2. After converting Word documents to PDF, release any dictionary file streams to avoid memory leaks. Call [Hyphenator.UnloadDictionaries()](https://help.syncfusion.com/cr/document-processing/Syncfusion.DocIO.DLS.Hyphenator.html#Syncfusion_DocIO_DLS_Hyphenator_UnloadDictionaries#Syncfusion_DocIO_DLS_Hyphenator_UnloadDictionaries) to free hyphenation resources and optimize performance.
826826

827827
The following code sample shows how to hyphenate text in a Word document while converting it to PDF format.
828828

0 commit comments

Comments
 (0)