From 98785817b416f04001cac8c67e8d787b0b7e9600 Mon Sep 17 00:00:00 2001 From: HarithaSuresh-GrowthHacker Date: Thu, 18 Jun 2026 10:39:13 +0530 Subject: [PATCH] SEO-222873 Winforms Spreadsheet UG documentation Interlinking --- .../Excel/Spreadsheet/Winforms/Conditional-Formatting.md | 2 +- .../Excel/Spreadsheet/Winforms/Conversion.md | 2 +- .../Excel/Spreadsheet/Winforms/Custom-Formula.md | 2 +- .../Excel/Spreadsheet/Winforms/Data-Management.md | 2 +- Document-Processing/Excel/Spreadsheet/Winforms/Editing.md | 2 +- .../Excel/Spreadsheet/Winforms/Find-and-Replace.md | 2 +- .../Excel/Spreadsheet/Winforms/Formatting.md | 2 +- Document-Processing/Excel/Spreadsheet/Winforms/Formulas.md | 2 +- .../Excel/Spreadsheet/Winforms/Getting-Started.md | 6 +++--- .../Excel/Spreadsheet/Winforms/Interactive-Features.md | 2 +- Document-Processing/Excel/Spreadsheet/Winforms/Outline.md | 2 +- Document-Processing/Excel/Spreadsheet/Winforms/Overview.md | 2 +- Document-Processing/Excel/Spreadsheet/Winforms/Printing.md | 2 +- .../Excel/Spreadsheet/Winforms/Rows-and-Columns.md | 2 +- Document-Processing/Excel/Spreadsheet/Winforms/Selection.md | 2 +- Document-Processing/Excel/Spreadsheet/Winforms/Shapes.md | 2 +- .../Excel/Spreadsheet/Winforms/Sorting-and-Filtering.md | 2 +- .../Excel/Spreadsheet/Winforms/Workbook-Operations.md | 2 ++ .../Excel/Spreadsheet/Winforms/Working-with-Spreadsheet.md | 5 ++++- .../Excel/Spreadsheet/Winforms/Worksheet-Management.md | 2 +- .../Excel/Spreadsheet/Winforms/localization.md | 2 +- 21 files changed, 27 insertions(+), 22 deletions(-) diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Conditional-Formatting.md b/Document-Processing/Excel/Spreadsheet/Winforms/Conditional-Formatting.md index 06d890eeda..b16b262d56 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Conditional-Formatting.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Conditional-Formatting.md @@ -11,7 +11,7 @@ documentation: ug This section explains about how to apply conditional formatting rules programmatically at run time in Spreadsheet. -In Spreadsheet, to apply conditional format for a cell or range of cells, add [IConditionalFormat](https://help.syncfusion.com/cr/windowsforms/Syncfusion.XlsIO.IConditionalFormat.html) to that range by using [AddCondition](https://help.syncfusion.com/cr/windowsforms/Syncfusion.XlsIO.IConditionalFormats.html#Syncfusion_XlsIO_IConditionalFormats_AddCondition) method. +In [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor), to apply conditional format for a cell or range of cells, add [IConditionalFormat](https://help.syncfusion.com/cr/windowsforms/Syncfusion.XlsIO.IConditionalFormat.html) to that range by using [AddCondition](https://help.syncfusion.com/cr/windowsforms/Syncfusion.XlsIO.IConditionalFormats.html#Syncfusion_XlsIO_IConditionalFormats_AddCondition) method. {% tabs %} {% highlight c# %} diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Conversion.md b/Document-Processing/Excel/Spreadsheet/Winforms/Conversion.md index 220d336ca2..a6d8b1894e 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Conversion.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Conversion.md @@ -12,7 +12,7 @@ This section explains about the conversion of workbook in Spreadsheet into image ## Convert into Image -Spreadsheet provides support to convert a worksheet in to an image of type Bitmap or Metafile based on the input range of rows and columns with all basic formats preserved, By using the [ConvertToImage](https://help.syncfusion.com/cr/windowsforms/Syncfusion.XlsIO.IWorksheet.html#Syncfusion_XlsIO_IWorksheet_ConvertToImage_System_Int32_System_Int32_System_Int32_System_Int32_) method,worksheet can be converted into an image. +[Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) provides support to convert a worksheet in to an image of type Bitmap or Metafile based on the input range of rows and columns with all basic formats preserved, By using the [ConvertToImage](https://help.syncfusion.com/cr/windowsforms/Syncfusion.XlsIO.IWorksheet.html#Syncfusion_XlsIO_IWorksheet_ConvertToImage_System_Int32_System_Int32_System_Int32_System_Int32_) method,worksheet can be converted into an image. {% tabs %} {% highlight c# %} diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Custom-Formula.md b/Document-Processing/Excel/Spreadsheet/Winforms/Custom-Formula.md index a03537af33..644c8369da 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Custom-Formula.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Custom-Formula.md @@ -9,7 +9,7 @@ documentation: ug # Custom Formula in Windows Forms Spreadsheet -Spreadsheet allows you to add custom formulas into its function library. You can add the custom formula into the Spreadsheet by using the [AddFunction](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.CellGrid.FormulaEngine.html#Syncfusion_Windows_Forms_CellGrid_FormulaEngine_AddFunction_System_String_Syncfusion_Windows_Forms_CellGrid_FormulaEngine_LibraryFunction_) method of [FormulaEngine](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.CellGrid.FormulaEngine.html), +[Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) allows you to add custom formulas into its function library. You can add the custom formula into the Spreadsheet by using the [AddFunction](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.CellGrid.FormulaEngine.html#Syncfusion_Windows_Forms_CellGrid_FormulaEngine_AddFunction_System_String_Syncfusion_Windows_Forms_CellGrid_FormulaEngine_LibraryFunction_) method of [FormulaEngine](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.CellGrid.FormulaEngine.html), {% tabs %} {% highlight c# %} diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Data-Management.md b/Document-Processing/Excel/Spreadsheet/Winforms/Data-Management.md index d6e971a901..1550be53e1 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Data-Management.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Data-Management.md @@ -12,7 +12,7 @@ This section explains about how to import and export the DataTable in `Spreadshe ## Import from DataTable -Spreadsheet provides support to import the data. The following list of data can be imported into the worksheet +[Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) provides support to import the data. The following list of data can be imported into the worksheet * Data Table * Data Column diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Editing.md b/Document-Processing/Excel/Spreadsheet/Winforms/Editing.md index 826187d7e2..a8ea2d2a4e 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Editing.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Editing.md @@ -9,7 +9,7 @@ documentation: ug # Editing in Windows Forms Spreadsheet -This section explains about the Editing behavior, Data Validation and Hyperlinks in Spreadsheet. +This section explains about the Editing behavior, Data Validation and Hyperlinks in [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor). ## Cell Editing diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Find-and-Replace.md b/Document-Processing/Excel/Spreadsheet/Winforms/Find-and-Replace.md index e5648fce45..d93fea1792 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Find-and-Replace.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Find-and-Replace.md @@ -9,7 +9,7 @@ documentation: ug # Find and Replace in Windows Forms Spreadsheet -This section explains about Find and Replace operations in Spreadsheet. +This section explains about Find and Replace operations in [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor). ## Find diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Formatting.md b/Document-Processing/Excel/Spreadsheet/Winforms/Formatting.md index 906bbf477e..9ce00f14ee 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Formatting.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Formatting.md @@ -9,7 +9,7 @@ documentation: ug # Formatting in Windows Forms Spreadsheet -This section explains about the formatting options similar to excel in Spreadsheet. +This section explains about the formatting options similar to excel in [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor). Styles and formats defined in an Excel file are automatically imported. Users can also apply these settings to cells during run time. The following are the formatting attributes for the cell. diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Formulas.md b/Document-Processing/Excel/Spreadsheet/Winforms/Formulas.md index c74968d1ca..f218452236 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Formulas.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Formulas.md @@ -9,7 +9,7 @@ documentation: ug # Formulas in Windows Forms Spreadsheet -Spreadsheet calculation engine offers automated calculation over a formula, expression, or cross sheet references. Spreadsheet calculation engine is preloaded with 409 formulas covering a broad range of business functions. +[Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) calculation engine offers automated calculation over a formula, expression, or cross sheet references. Spreadsheet calculation engine is preloaded with 409 formulas covering a broad range of business functions. ## Adding formula into cell diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Getting-Started.md b/Document-Processing/Excel/Spreadsheet/Winforms/Getting-Started.md index d62164c8c4..f8cb05da07 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Getting-Started.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Getting-Started.md @@ -8,7 +8,7 @@ documentation: ug --- # Getting Started with Windows Forms Spreadsheet -This section briefly explains how to include the [Syncfusion® WinForms Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) component in Windows Forms App using Visual Studio. +This section briefly explains how to include the [WinForms Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) component in Windows Forms App using Visual Studio. ## Prerequisites * [System requirements for WinForms components](https://help.syncfusion.com/windowsforms/system-requirements) @@ -37,7 +37,7 @@ To add **Windows Forms Spreadsheet** component in the application, open the NuGe ### Add Syncfusion® WinForms Spreadsheet Assemblies -Below table describes, list of assemblies required to be added in project when the [WinForms Spreadsheet](https://www.syncfusion.com/winforms-ui-controls/spreadsheet) control is used in your application. +Below table describes, list of assemblies required to be added in project when the (https://www.syncfusion.com/winforms-ui-controls/spreadsheet) control is used in your application. @@ -208,7 +208,7 @@ Press Ctrl+F5 (Windows) or +F5 (m To learn how to create, open, and save files in the WPF Spreadsheet Component, see [Workbook Operations](Workbook-Operations). -N>[View Sample in GitHub.](https://github.com/SyncfusionExamples/winforms-spreadsheet-getting-started) +N>[View Sample in GitHub.](https://github.com/SyncfusionExamples/winforms-spreadsheet-getting-started). Looking for the full Winforms Spreadsheet Editor component overview, features, pricing, and documentation? Visit the [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) page. ## See Also - [Data Management](Data-Management) diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Interactive-Features.md b/Document-Processing/Excel/Spreadsheet/Winforms/Interactive-Features.md index 9fcc0b7a5c..f94f2fe7a3 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Interactive-Features.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Interactive-Features.md @@ -13,7 +13,7 @@ documentation: ug ## Clipboard Operations -Spreadsheet provides support for all the clipboard operations to with all the format settings when copied within a workbook. +[Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) provides support for all the clipboard operations to with all the format settings when copied within a workbook. You can use the following shortcut keys for Clipboard operations like Excel
diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Outline.md b/Document-Processing/Excel/Spreadsheet/Winforms/Outline.md index f7a12602b2..4a1f310de8 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Outline.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Outline.md @@ -9,7 +9,7 @@ documentation: ug # Outline in Windows Forms Spreadsheet -Spreadsheet provides support for outlines like in excel which makes your data easier to view. You can group or ungroup the data’s either by rows or columns. +[Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) provides support for outlines like in excel which makes your data easier to view. You can group or ungroup the data’s either by rows or columns. ## Grouping rows and columns diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Overview.md b/Document-Processing/Excel/Spreadsheet/Winforms/Overview.md index b40bce81e6..3bb7305bea 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Overview.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Overview.md @@ -9,7 +9,7 @@ documentation: ug # Windows Forms Spreadsheet Overview -The [Syncfusion® WinForms Spreadsheet](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) is an Excel inspired control that allows you to create, edit, view and format the Microsoft Excel files without Excel installed. It provides absolute ease of use UI experience with integrated ribbon to cover any possible business scenario. Spreadsheet comes with built-in calculation engine with support for 400+ most widely used formulas. +The [WinForms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) is an Excel inspired control that allows you to create, edit, view and format the Microsoft Excel files without Excel installed. It provides absolute ease of use UI experience with integrated ribbon to cover any possible business scenario. Spreadsheet comes with built-in calculation engine with support for 400+ most widely used formulas. ![Spreadsheet](Overview-image\wf-spreadsheet-overview-image.png) diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Printing.md b/Document-Processing/Excel/Spreadsheet/Winforms/Printing.md index f7c5038b95..3cb45a5cd5 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Printing.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Printing.md @@ -9,7 +9,7 @@ documentation: ug # Printing in Windows Forms Spreadsheet -Spreadsheet control allows you to print the data in the workbook with the help of PDF Conversion. To provide the printing support in Spreadsheet, you need to convert the workbook into PDF document using ExcelToPdfConverter. +[Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) control allows you to print the data in the workbook with the help of PDF Conversion. To provide the printing support in Spreadsheet, you need to convert the workbook into PDF document using ExcelToPdfConverter. For Conversion of Excel Workbook in Spreadsheet to PDF document, use `Convert` method of `ExcelToPdfConverter`. diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Rows-and-Columns.md b/Document-Processing/Excel/Spreadsheet/Winforms/Rows-and-Columns.md index e32e923079..db85947196 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Rows-and-Columns.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Rows-and-Columns.md @@ -8,7 +8,7 @@ documentation: ug --- # Rows and Columns in Windows Forms Spreadsheet -This section explains about the operations related with rows and columns in Spreadsheet +This section explains about the operations related with rows and columns in [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) ## Inserting rows and columns diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Selection.md b/Document-Processing/Excel/Spreadsheet/Winforms/Selection.md index e638fe02ee..d3766b08ba 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Selection.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Selection.md @@ -9,7 +9,7 @@ documentation: ug # Selection in Windows Forms Spreadsheet -This section explains about the Selection behavior in Spreadsheet. +This section explains about the Selection behavior in [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor). The Spreadsheet control provides support for selection in grid by using mouse, keyboard and touch interactions. diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Shapes.md b/Document-Processing/Excel/Spreadsheet/Winforms/Shapes.md index ccf9ad226b..c90f2df267 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Shapes.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Shapes.md @@ -8,7 +8,7 @@ documentation: ug --- # Shapes in Windows Forms Spreadsheet - This section explains how to import charts, sparklines, pictures and textboxes in Spreadsheet. + This section explains how to import charts, sparklines, pictures and textboxes in [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor). ## Charts diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Sorting-and-Filtering.md b/Document-Processing/Excel/Spreadsheet/Winforms/Sorting-and-Filtering.md index 713092108f..a30ed9fbd1 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Sorting-and-Filtering.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Sorting-and-Filtering.md @@ -9,7 +9,7 @@ documentation: ug # Sorting And Filtering in Windows Forms Spreadsheet -This section explains the features of sorting and filtering in the Spreadsheet. +This section explains the features of sorting and filtering in the [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor). ## Filtering diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Workbook-Operations.md b/Document-Processing/Excel/Spreadsheet/Winforms/Workbook-Operations.md index f33da8d160..a20fd6d8e5 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Workbook-Operations.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Workbook-Operations.md @@ -109,3 +109,5 @@ public Form1() .... {% endhighlight %} {% endtabs %} + +N> Looking for the full Winforms Spreadsheet Editor component overview, features, pricing, and documentation? Visit the [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) page. diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Working-with-Spreadsheet.md b/Document-Processing/Excel/Spreadsheet/Winforms/Working-with-Spreadsheet.md index feb46ead20..2df7e8139d 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Working-with-Spreadsheet.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Working-with-Spreadsheet.md @@ -12,7 +12,7 @@ documentation: ug ## Accessing the worksheet -A __workbook__ is an excel document in the Spreadsheet. It is an object that exposes the [IWorkbook](https://help.syncfusion.com/cr/windowsforms/Syncfusion.XlsIO.IWorkbook.html) interface. Currently loaded workbook in the Spreadsheet can be accessed by using the [Workbook](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Workbook) property of Spreadsheet. +A __workbook__ is an excel document in the [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor). It is an object that exposes the [IWorkbook](https://help.syncfusion.com/cr/windowsforms/Syncfusion.XlsIO.IWorkbook.html) interface. Currently loaded workbook in the Spreadsheet can be accessed by using the [Workbook](https://help.syncfusion.com/cr/windowsforms/Syncfusion.Windows.Forms.Spreadsheet.Spreadsheet.html#Syncfusion_Windows_Forms_Spreadsheet_Spreadsheet_Workbook) property of Spreadsheet. A workbook consists of one or more worksheets stored within the worksheet collection. Accessing the worksheets in the collection, can be done by the following ways, @@ -352,3 +352,6 @@ void Spreadsheet_PropertyChanged(object sender, System.ComponentModel.PropertyCh {% endhighlight %} {% endtabs %} + + +N> Looking for the full Winforms Spreadsheet Editor component overview, features, pricing, and documentation? Visit the [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) page. diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/Worksheet-Management.md b/Document-Processing/Excel/Spreadsheet/Winforms/Worksheet-Management.md index a6d3d59c84..47f0d4bab2 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/Worksheet-Management.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/Worksheet-Management.md @@ -12,7 +12,7 @@ This section explains about the operations that are performed with the worksheet ## Insert and Delete -Spreadsheet provides support to insert and delete the worksheets in a workbook. +[Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) provides support to insert and delete the worksheets in a workbook. {% tabs %} {% highlight c# %} diff --git a/Document-Processing/Excel/Spreadsheet/Winforms/localization.md b/Document-Processing/Excel/Spreadsheet/Winforms/localization.md index 99b946168b..7097400a55 100644 --- a/Document-Processing/Excel/Spreadsheet/Winforms/localization.md +++ b/Document-Processing/Excel/Spreadsheet/Winforms/localization.md @@ -9,7 +9,7 @@ documentation: ug # Localization in Windows Forms Spreadsheet -Localization is the process of configuring the application to a specific language. Spreadsheet provides support to localize all the static text in a Ribbon and all dialogs to any desired language. Localization can be done by adding resource file and setting the specific culture in the application. +Localization is the process of configuring the application to a specific language. [Winforms Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/winforms-spreadsheet-editor) provides support to localize all the static text in a Ribbon and all dialogs to any desired language. Localization can be done by adding resource file and setting the specific culture in the application. Spreadsheet allows you to set custom resource using Resx file. You can define your string values in resource file for a specific culture and set the culture in your application.