diff --git a/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Data-Bars.md b/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Data-Bars.md index f42d94cf7..d8617d08f 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Data-Bars.md +++ b/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Data-Bars.md @@ -10,7 +10,7 @@ documentation: UG Here, the values in each of the selected cells are compared, and a data bar is drawn in each cell representing the value of that cell relative to the other cells in the selected range. This bar provides a clear visual cue for users, making it easier to pick out larger and smaller values in a range. -The following code example illustrates how to apply data bars using [IDataBar](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IDataBar.html) interface in XlsIO. +The following code example illustrates how to apply data bars using [IDataBar](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IDataBar.html) interface in XlsIO. {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Conditional%20Formatting/Data%20Bars/.NET/Data%20Bars/Data%20Bars/Program.cs,180" %} diff --git a/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Highlight-Cells.md b/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Highlight-Cells.md index 758c72b57..16930e182 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Highlight-Cells.md +++ b/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Highlight-Cells.md @@ -12,7 +12,7 @@ Highlight cell rules are powerful tools for data analysis and presentation, enha ## Format Unique and Duplicate Values -Format unique and duplicate values of an Excel range using conditional formatting. The values, **Unique** and **Duplicate** of the enumeration [ExcelCFType](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ExcelCFType.html) helps to achieve the requirement. +Format unique and duplicate values of an Excel range using conditional formatting. The values, **Unique** and **Duplicate** of the enumeration [ExcelCFType](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ExcelCFType.html) helps to achieve the requirement. The following code example illustrates how to format unique and duplicate values using conditional formatting. diff --git a/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Icon-Sets.md b/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Icon-Sets.md index 5ce56b3e6..6289b2773 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Icon-Sets.md +++ b/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Icon-Sets.md @@ -10,7 +10,7 @@ documentation: UG Icon sets present data in three to five categories that are distinguished by a threshold value. Each icon represents a range of values and each cell is annotated with the icon that represents that range. -The following code example illustrates how to apply Icon sets using [IconSet](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.IIconSet.html) interface in XlsIO. +The following code example illustrates how to apply Icon sets using [IconSet](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.IIconSet.html) interface in XlsIO. {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Conditional%20Formatting/Icon%20Sets/.NET/Icon%20Sets/Icon%20Sets/Program.cs,180" %} diff --git a/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Top-Bottom.md b/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Top-Bottom.md index b7b5c0ca7..dcc93b871 100644 --- a/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Top-Bottom.md +++ b/Document-Processing/Excel/Excel-Library/NET/Conditional-Formatting/Top-Bottom.md @@ -12,7 +12,7 @@ Top/Bottom Rules are powerful tools for data analysis and presentation, enhancin ## Format Top or Bottom Values -Top/Bottom rule in conditional formatting is used to highlight the top or bottom ranked cells in a data range. Top/Bottom conditional formatting rule can be created and customized using the [ITopBottom](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ITopBottom.html) interface in XlsIO. +Top/Bottom rule in conditional formatting is used to highlight the top or bottom ranked cells in a data range. Top/Bottom conditional formatting rule can be created and customized using the [ITopBottom](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITopBottom.html) interface in XlsIO. The properties of **ITopBottom** interface are: @@ -22,7 +22,7 @@ The properties of **ITopBottom** interface are: ### Top/Bottom ā€˜n’ rank values -The following code example illustrates how to format top 10 rank values from the given data range using [ITopBottom](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ITopBottom.html) [Type](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Type) and [Rank](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Rank) properties in XlsIO. +The following code example illustrates how to format top 10 rank values from the given data range using [ITopBottom](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITopBottom.html) [Type](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Type) and [Rank](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Rank) properties in XlsIO. {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Conditional%20Formatting/Top%20to%20Bottom%20Rank/.NET/Top%20to%20Bottom%20Rank/Top%20to%20Bottom%20Rank/Program.cs,180" %} @@ -181,7 +181,7 @@ N> **ITopBottom** **Rank** value should be in a range between 1 and 1000. ### Top/Bottom ā€˜n’% rank values -The following code example illustrates how to format top 50 percentage rank values from the given data range using [ITopBottom](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ITopBottom.html) [Type](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Type), [Rank](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Rank) and [Percent](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Percent) properties in XlsIO +The following code example illustrates how to format top 50 percentage rank values from the given data range using [ITopBottom](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITopBottom.html) [Type](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Type), [Rank](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Rank) and [Percent](https://help.syncfusion.com/cr/document-processing/Syncfusion.XlsIO.ITopBottom.html#Syncfusion_XlsIO_ITopBottom_Percent) properties in XlsIO {% tabs %} {% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/XlsIO-Examples/master/Conditional%20Formatting/Top%20To%20Bottom%20Percent/.NET/Top%20To%20Bottom%20Percent/Top%20To%20Bottom%20Percent/Program.cs,180" %} diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md index 31a8badbf..37621f477 100644 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md +++ b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-image-quality-when-using-the-exportqualityimage-property.md @@ -21,5 +21,5 @@ Hence, we have used PNG format as default for exporting the images into PDF. If ## See Also * [How to export quality image?](https://help.syncfusion.com/file-formats/xlsio/excel-to-pdf-converter-settings#export-quality-image) -* [How to convert Worksheet to Image?](https://help.syncfusion.com/file-formats/xlsio/worksheet-to-image-conversion) +* [How to convert Worksheet to Image?](https://help.syncfusion.com/document-processing/excel/conversions/excel-to-image/net/worksheet-to-image-conversion) * [How to convert Chart to Image?](https://help.syncfusion.com/file-formats/xlsio/chart-to-image-conversion) diff --git a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-range-of-rows-and-columns.md b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-range-of-rows-and-columns.md index 5609ae5dd..289ddd35b 100644 --- a/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-range-of-rows-and-columns.md +++ b/Document-Processing/Excel/Excel-Library/NET/faqs/what-is-the-maximum-range-of-rows-and-columns.md @@ -17,7 +17,7 @@ The above specification is the worksheet size of Excel. For more information, se ## See Also -* [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) -* [How to hide the summary rows and columns using XlsIO?](https://help.syncfusion.com/file-formats/xlsio/faqs/how-to-hide-the-summary-rows-and-columns-using-xlsio) +* [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) +* [How to hide the summary rows and columns using XlsIO?](https://help.syncfusion.com/document-processing/excel/excel-library/net/faqs/how-to-hide-the-summary-rows-and-columns-using-xlsio) * [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) * [How to manipulate worksheet rows and columns?](https://help.syncfusion.com/file-formats/xlsio/worksheet-rows-and-columns-manipulation)