diff --git a/WindowsForms/Classic/DataBoundGrid/Accessing-Values-in-the-Grid-Data-Bound-Grid-and-in-the-Data-Source.md b/WindowsForms/Classic/DataBoundGrid/Accessing-Values-in-the-Grid-Data-Bound-Grid-and-in-the-Data-Source.md
index 165cafb53..29da51df2 100644
--- a/WindowsForms/Classic/DataBoundGrid/Accessing-Values-in-the-Grid-Data-Bound-Grid-and-in-the-Data-Source.md
+++ b/WindowsForms/Classic/DataBoundGrid/Accessing-Values-in-the-Grid-Data-Bound-Grid-and-in-the-Data-Source.md
@@ -9,7 +9,7 @@ documentation: ug
# Accessing Values in Windows Forms GridDataBoundGrid
-To access values in the Grid Data Bound Grid, use the indexer and retrieve the value from the GridStyleInfo object.
+To access values in the GridDataBoundGrid, use the indexer and retrieve the value from the GridStyleInfo object.
{% tabs %}
{% highlight c# %}
diff --git a/WindowsForms/Classic/DataBoundGrid/Binding-to-a-DataTable.md b/WindowsForms/Classic/DataBoundGrid/Binding-to-a-DataTable.md
index dc9281a72..e9ed0ceed 100644
--- a/WindowsForms/Classic/DataBoundGrid/Binding-to-a-DataTable.md
+++ b/WindowsForms/Classic/DataBoundGrid/Binding-to-a-DataTable.md
@@ -11,7 +11,7 @@ documentation: ug
Binding to a DataTable is a very simple and straight-forward process. After defining DataTable, you must set GridDataBoundGrid.DataSource property to the table. Then you can easily use the Data Tab of your toolbox in Visual Studio to generate DataTables. Here we will add a simple People table using the code to illustrate how you can dynamically create a DataTable.
-Creating a DataTable from code is a two-step process. You must first add DataColumn objects to the DataTable.Columns collection and then you must add DataRow objects to the DataTable.Rows collection. Given below is the code that does this. The code will assume that you have dropped a Grid Data Bound Grid onto the form.
+Creating a DataTable from code is a two-step process. You must first add DataColumn objects to the DataTable.Columns collection and then you must add DataRow objects to the DataTable.Rows collection. Given below is the code that does this. The code will assume that you have dropped a GridDataBoundGrid onto the form.
{% tabs %}
{% highlight c# %}
diff --git a/WindowsForms/Classic/DataBoundGrid/Binding-to-an-ArrayList.md b/WindowsForms/Classic/DataBoundGrid/Binding-to-an-ArrayList.md
index 9c813ebce..fa2a29a1a 100644
--- a/WindowsForms/Classic/DataBoundGrid/Binding-to-an-ArrayList.md
+++ b/WindowsForms/Classic/DataBoundGrid/Binding-to-an-ArrayList.md
@@ -13,7 +13,7 @@ You can bind an ArrayList that holds objects with public properties. Given below
1. We first define an object called Person with two public properties: FirstName and LastName.
2. We then create an ArrayList holding a collection of these objects.
-3. To bind this ArrayList to Grid Data Bound Grid, we set the grid's DataSource property after dropping Grid Data Bound Grid onto the form.
+3. To bind this ArrayList to GridDataBoundGrid, we set the grid's DataSource property after dropping control onto the form.
Given below is the code sample for this.
diff --git a/WindowsForms/Classic/DataBoundGrid/Built-in-Error-Provider-Support.md b/WindowsForms/Classic/DataBoundGrid/Built-in-Error-Provider-Support.md
index d818d1151..ba7a1ac19 100644
--- a/WindowsForms/Classic/DataBoundGrid/Built-in-Error-Provider-Support.md
+++ b/WindowsForms/Classic/DataBoundGrid/Built-in-Error-Provider-Support.md
@@ -128,7 +128,7 @@ Me.gridDataBoundGrid1.CurrentCell.ValidationErrorText = "this is the text"
{% endhighlight %}
{% endtabs %}
- 
+ 
## Specifying Error Content
diff --git a/WindowsForms/Classic/DataBoundGrid/Changing-Column-Order-in-Grid-Data-Bound-Grid.md b/WindowsForms/Classic/DataBoundGrid/Changing-Column-Order-in-Grid-Data-Bound-Grid.md
index 4096b6b06..603afa535 100644
--- a/WindowsForms/Classic/DataBoundGrid/Changing-Column-Order-in-Grid-Data-Bound-Grid.md
+++ b/WindowsForms/Classic/DataBoundGrid/Changing-Column-Order-in-Grid-Data-Bound-Grid.md
@@ -9,7 +9,7 @@ documentation: ug
# Changing Column Order in Windows Forms GridDataBoundGrid
-The simplest way to change the column order in a Grid Data Bound Grid is to use the GridDataBoundGrid.Model.Cols.MoveRange method. This method will rearrange columns that are based on from and to and counts the parameters passed into it.
+The simplest way to change the column order in a GridDataBoundGrid is to use the GridDataBoundGrid.Model.Cols.MoveRange method. This method will rearrange columns that are based on from and to and counts the parameters passed into it.
{% tabs %}
{% highlight c# %}
diff --git a/WindowsForms/Classic/DataBoundGrid/Data-Relations.md b/WindowsForms/Classic/DataBoundGrid/Data-Relations.md
index cbee5f05a..3fbd08951 100644
--- a/WindowsForms/Classic/DataBoundGrid/Data-Relations.md
+++ b/WindowsForms/Classic/DataBoundGrid/Data-Relations.md
@@ -15,7 +15,7 @@ This section illustrates the following topics.
## Nested Drop-down Grids
-Nested Drop-down grids are used to represent multi-level data in a grid. For example, if a bank wants to load all the accounts of an enrolled user in grid control for a financial project, and some of the accounts have sub accounts with options to be selected under each sub account, which need to be loaded/ shown as a sub element to that account, Nested Drop-down grids can be used to represent data. Data can be distributed in parent (primary) grid, child grid, and so on. Grid Data Bound Grid control can display hierarchical data using Nested Drop-down grids.
+Nested Drop-down grids are used to represent multi-level data in a grid. For example, if a bank wants to load all the accounts of an enrolled user in grid control for a financial project, and some of the accounts have sub accounts with options to be selected under each sub account, which need to be loaded/ shown as a sub element to that account, Nested Drop-down grids can be used to represent data. Data can be distributed in parent (primary) grid, child grid, and so on. GridDataBoundGrid control can display hierarchical data using Nested Drop-down grids.
### Example
@@ -79,7 +79,7 @@ A sample demonstrating this feature is available under the following sample inst
## Multiple Nested Relations
-Grid Data Bound Grid control supports multiple nested relations. A relation can be added in the data source and the data source can be set to GridDataBoundGrid. Then the name of the relation can be passed through Grid.Binder.AddRelation function to show a hierarchical pattern.
+GridDataBoundGrid control supports multiple nested relations. A relation can be added in the data source and the data source can be set to the control. Then the name of the relation can be passed through Grid.Binder.AddRelation function to show a hierarchical pattern.
### Example
@@ -105,7 +105,7 @@ A sample demonstrating this feature is available under the following sample inst
## Hierarchical Grid with Tree Lines
-Grid Data Bound Grid supports display of hierarchical grid with tree lines. This can be achieved by setting the ShowTreeLines property to _true_.
+GridDataBoundGrid supports display of hierarchical grid with tree lines. This can be achieved by setting the ShowTreeLines property to _true_.
{% tabs %}
{% highlight c# %}
@@ -129,9 +129,9 @@ A sample demonstrating this feature is available under the following sample inst
## ExpandAll and CollapseAll Methods
1. ExpandAll
-1. Using this method will enable the user to view expanded nodes in DataBound Grid, i.e., the parent, child and subsequent sub level nodes.
+1. Using this method will enable the user to view expanded nodes in DataBoundGrid, i.e., the parent, child and subsequent sub level nodes.
- The following code illustrates how to set this method for DataBound Grid:
+ The following code illustrates how to set this method for DataBoundGrid:
{% tabs %}
{% highlight c# %}
@@ -142,14 +142,14 @@ Me.gridDataBoundGrid1.ExpandAll()
{% endhighlight %}
{% endtabs %}
- 
+ 
2. CollapseAll
-3. Using this method will enable the user to view collapsed nodes in DataBound Grid, i.e., only the parent node can be viewed with its corresponding expansion icon.
+3. Using this method will enable the user to view collapsed nodes in DataBoundGrid, i.e., only the parent node can be viewed with its corresponding expansion icon.
- The following code illustrates how to set this method for DataBound Grid:
+ The following code illustrates how to set this method for DataBoundGrid:
{% tabs %}
{% highlight c# %}
@@ -159,4 +159,4 @@ Me.gridDataBoundGrid1.ExpandAll()
Me.gridDataBoundGrid1.CollapseAll()
{% endhighlight %}
{% endtabs %}
- 
+ 
diff --git a/WindowsForms/Classic/DataBoundGrid/Events.md b/WindowsForms/Classic/DataBoundGrid/Events.md
index 8ceb6ff0b..22789a7a6 100644
--- a/WindowsForms/Classic/DataBoundGrid/Events.md
+++ b/WindowsForms/Classic/DataBoundGrid/Events.md
@@ -9,7 +9,7 @@ documentation: ug
# Events in Windows Forms GridDataBoundGrid
-The important events in Grid control and DataBound Grid are as follows.
+The important events in Grid control and DataBoundGrid are as follows.
## Current Cell Related Events
diff --git a/WindowsForms/Classic/DataBoundGrid/Field-Chooser-for-DataBound-Grid.md b/WindowsForms/Classic/DataBoundGrid/Field-Chooser-for-DataBound-Grid.md
index d87adebf1..7fd4f60f9 100644
--- a/WindowsForms/Classic/DataBoundGrid/Field-Chooser-for-DataBound-Grid.md
+++ b/WindowsForms/Classic/DataBoundGrid/Field-Chooser-for-DataBound-Grid.md
@@ -75,17 +75,17 @@ fChooser.WireGrid(Me.GridDataBoundGrid1)
2. When the code runs, the entire grid will open.
3. Right click on a column header and select the Field Chooser menu item to view _Field Chooser_ dialog.
- 
+ 
4. This dialog will list all the column names with check boxes adjacent to them.
- 
+ 
5. Select the checkboxes of the columns you want to be displayed in the grid.
6. The grid will have only the columns which are selected in the _Field Chooser_ dialog.
- 
+ 
diff --git a/WindowsForms/Classic/DataBoundGrid/Filtering-Grid-Data-Bound-Grid.md b/WindowsForms/Classic/DataBoundGrid/Filtering-Grid-Data-Bound-Grid.md
index 81a6927b5..d74bfbfb0 100644
--- a/WindowsForms/Classic/DataBoundGrid/Filtering-Grid-Data-Bound-Grid.md
+++ b/WindowsForms/Classic/DataBoundGrid/Filtering-Grid-Data-Bound-Grid.md
@@ -11,7 +11,7 @@ documentation: ug
We will use an example to illustrate filtering procedure for the grid.
-Assume that you are binding a grid to DataTable. In this case, you will have to use DataView.RowFilter property to restrict the rows that appear in your Grid Data Bound Grid. The syntax for RowFilter clause is very similar to SQL WHERE clause. You will be able to see a full description of this in the .NET Frameworks online help for DataColumn.Expression, which uses the same syntax.
+Assume that you are binding a grid to DataTable. In this case, you will have to use DataView.RowFilter property to restrict the rows that appear in your GridDataBoundGrid. The syntax for RowFilter clause is very similar to SQL WHERE clause. You will be able to see a full description of this in the .NET Frameworks online help for DataColumn.Expression, which uses the same syntax.
Here are some samples.
@@ -40,7 +40,7 @@ Name LIKE *a
Shows only rows where the Name column ends with *a. |
-
+
@@ -62,11 +62,11 @@ dataView.RowFilter = "FirstName LIKE 's*'"
{% endhighlight %}
{% endtabs %}
-You can use the Essential Grid's GridFilterBar class to automatically add a row of drop-down cells at the top of a simple (non-hierarchical) DataBound Grid that can be used to filter the grid to display only rows that match values from the drop-down. For example, when you have a grid with Grid Filter Bar, if one of your columns is City and you want to see all the rows where City is 'Boston' for example and then you will have to drop the combo box at the top of the City column and select Boston. The grid will then display only those rows with Boston in the City column. Adding a Grid Filter Bar takes only two lines of code.
+You can use the Essential Grid's GridFilterBar class to automatically add a row of drop-down cells at the top of a simple (non-hierarchical) GridDataBoundGrid that can be used to filter the grid to display only rows that match values from the drop-down. For example, when you have a grid with Grid Filter Bar, if one of your columns is City and you want to see all the rows where City is 'Boston' for example and then you will have to drop the combo box at the top of the City column and select Boston. The grid will then display only those rows with Boston in the City column. Adding a Grid Filter Bar takes only two lines of code.
{% tabs %}
{% highlight c# %}
-//Adds a Filter Bar to the DataBoundGrid.
+//Adds a Filter Bar to the GridDataBoundGrid.
GridFilterBar filterBar = new Syncfusion.Windows.Forms.Grid.GridFilterBar();
filterBar.WireGrid(gridDataBoundGrid1);
{% endhighlight %}
@@ -77,13 +77,13 @@ filterBar.WireGrid(GridDataBoundGrid1)
{% endhighlight %}
{% endtabs %}
-
+
## Filter By DisplayMember
-Grid Data Bound Grid filters data records by value member of the columns. This default behavior can be customized in order to accomplish filtering by display member instead. This can be achieved by deriving custom filter from the GridFilterBar class wherein you can customize GetFilterFromRow method to replace the display strings in the filter with value strings.
+GridDataBoundGrid filters data records by value member of the columns. This default behavior can be customized in order to accomplish filtering by display member instead. This can be achieved by deriving custom filter from the GridFilterBar class wherein you can customize GetFilterFromRow method to replace the display strings in the filter with value strings.
Filter By DisplayMember feature performs this sort of customization and lets you filter grid data by display member instead of value member.
@@ -100,7 +100,7 @@ filterBar.WireGrid(gridDataBoundGrid1)
{% endhighlight %}
{% endtabs %}
-
+
diff --git a/WindowsForms/Classic/DataBoundGrid/Foreign-Key-Columns-Shows-One-Value-but-Saves-Another.md b/WindowsForms/Classic/DataBoundGrid/Foreign-Key-Columns-Shows-One-Value-but-Saves-Another.md
index 3da476511..1939a3681 100644
--- a/WindowsForms/Classic/DataBoundGrid/Foreign-Key-Columns-Shows-One-Value-but-Saves-Another.md
+++ b/WindowsForms/Classic/DataBoundGrid/Foreign-Key-Columns-Shows-One-Value-but-Saves-Another.md
@@ -13,7 +13,7 @@ Very often a table will have a column that displays an ID key defined in another
Essential Grid will handle this work for you and it can be done through the designer. For the example discussed below, we use code to handle most of the steps.
-In the designer, drag two of the DataBound Grids onto a form. Use one grid to show the foreign key combobox and the other to show the raw data for the primary table. Once the grids are in place, the code, which is given below will create the tables for this sample and then the code in the Form_Load will hook up the foreign key combobox. In our sample, we have set the combobox button to display only the current row.
+In the designer, drag two of the GridDataBoundGrid's onto a form. Use one grid to show the foreign key combobox and the other to show the raw data for the primary table. Once the grids are in place, the code, which is given below will create the tables for this sample and then the code in the Form_Load will hook up the foreign key combobox. In our sample, we have set the combobox button to display only the current row.
{% tabs %}
{% highlight c# %}
diff --git a/WindowsForms/Classic/DataBoundGrid/Getting-Started.md b/WindowsForms/Classic/DataBoundGrid/Getting-Started.md
index c389ed37f..79a8f3521 100644
--- a/WindowsForms/Classic/DataBoundGrid/Getting-Started.md
+++ b/WindowsForms/Classic/DataBoundGrid/Getting-Started.md
@@ -9,7 +9,7 @@ documentation: ug
# Getting Started with Windows Forms GridDataBoundGrid Control
-This section will provide step-by-step procedure to create Grid DataBound Grid through designer and through programmatic approach in a .NET application.
+This section will provide step-by-step procedure to create GridDataBoundGrid through designer and through programmatic approach in a .NET application.
## Assembly Deployment
@@ -19,11 +19,11 @@ Refer [control dependencies](https://help.syncfusion.com/windowsforms/control-de
### Through Designer
-In this lesson, you will learn how to use Forms Designer to create an Essential DataBound Grid. You can rely on the designer to generate all the codes necessary except for two lines: one that fills the ADO.NET adapter and one that updates the database when you are done.
+In this lesson, you will learn how to use Forms Designer to create an Essential GridDataBoundGrid. You can rely on the designer to generate all the codes necessary except for two lines: one that fills the ADO.NET adapter and one that updates the database when you are done.
-#### Basic DataBound Grid
+#### Basic GridDataBoundGrid
-In this part, you will learn how to use the designer to place DataBound Grid on a form.
+In this part, you will learn how to use the designer to place GridDataBoundGrid on a form.
1. In Visual Studio .NET, use the File -> Menu option to create a new Windows Application project, naming it DBGridTutorial.
@@ -85,7 +85,7 @@ Click Next to confirm the Query you selected.
Click Finish. Your design surface will look similar to this.
- 
+ 
@@ -99,15 +99,15 @@ Next you will need to generate a dataset from the SQLDataAdapter. Right-click sq
Press OK to add DataSet11 object next to sqlConnection1 under the design surface.
-From the toolbox, drag Grid Data Bound Grid control to your form. Size and position it and add a button labeled Update to your form.
+From the toolbox, drag GridDataBoundGrid control to your form. Size and position it and add a button labeled Update to your form.
- 
+ 
-Click DataBound Grid to display its properties in PropertyGrid. Set these properties.
+Click GridDataBoundGrid to display its properties in PropertyGrid. Set these properties.
@@ -153,9 +153,9 @@ Now when you click Update button, it will post the changes made back to your dat
#### Applying special column formats
-GridBoundColumn collection property of DataBound Grid is used to set column properties. This collection will let you control columns displayed and their order. For each column that you want displayed, add a Grid Bound Column. In this Grid Bound Column, you must set MappingName property; the other properties such as HeaderText and Style are optional. Under the Style property, you will have access to normal GridStyleInfo properties that you can apply to this column such as BackColor, CellType and Font.
+GridBoundColumn collection property of GridDataBoundGrid is used to set column properties. This collection will let you control columns displayed and their order. For each column that you want displayed, add a Grid Bound Column. In this Grid Bound Column, you must set MappingName property; the other properties such as HeaderText and Style are optional. Under the Style property, you will have access to normal GridStyleInfo properties that you can apply to this column such as BackColor, CellType and Font.
- 
+ 
@@ -167,7 +167,7 @@ GridBoundColumn collection property of DataBound Grid is used to set column prop
Click Add button to add a grid bound column, and then set MappingName property of that grid bound column to _ProductName_.
- 
+ 
@@ -175,7 +175,7 @@ GridBoundColumn collection property of DataBound Grid is used to set column prop
Select StyleInfo property and set BackColor for the column as shown in the following screen shot.
- 
+ 
@@ -187,7 +187,7 @@ GridBoundColumn collection property of DataBound Grid is used to set column prop
-Compile and run the project to see formatted Grid Data Bound Grid. In the following screen shot, you will be able to see the grid with columns specified and in the order that you specified them. Notice that the 'UnitPrice' column shows the price in specified currency format.
+Compile and run the project to see formatted GridDataBoundGrid. In the following screen shot, you will be able to see the grid with columns specified and in the order that you specified them. Notice that the 'UnitPrice' column shows the price in specified currency format.

@@ -197,7 +197,7 @@ Compile and run the project to see formatted Grid Data Bound Grid. In the follow
### Through Code
-Here are some code samples that will create a DataTable and bind it a to Grid Data Bound Grid. Once you have a DataTable object populated you can use the GridDataBoundGrid.DataSource property to implement the binding.
+Here are some code samples that will create a DataTable and bind it a to GridDataBoundGrid. Once you have a DataTable object populated you can use the GridDataBoundGrid.DataSource property to implement the binding.
{% tabs %}
{% highlight c# %}
diff --git a/WindowsForms/Classic/DataBoundGrid/GridBoundColumns-and-Controlling-the-Column-Format.md b/WindowsForms/Classic/DataBoundGrid/GridBoundColumns-and-Controlling-the-Column-Format.md
index c7a271a4f..863d27ed9 100644
--- a/WindowsForms/Classic/DataBoundGrid/GridBoundColumns-and-Controlling-the-Column-Format.md
+++ b/WindowsForms/Classic/DataBoundGrid/GridBoundColumns-and-Controlling-the-Column-Format.md
@@ -9,7 +9,7 @@ documentation: ug
# GridBoundColumns in Windows Forms GridDataBoundGrid
-To control properties of a column in your Grid DataBound Grid, you must use GridBoundColumn class object. You can also explicitly add GridBoundColumn object to GridDataBoundGrid.GridBoundColumns collection for each column that you want to see in the grid or you can let GridDataBoundGrid.Binder class generate these columns for you.
+To control properties of a column in your GridDataBoundGrid, you must use GridBoundColumn class object. You can also explicitly add GridBoundColumn object to GridDataBoundGrid.GridBoundColumns collection for each column that you want to see in the grid or you can let GridDataBoundGrid.Binder class generate these columns for you.
Here are the code samples that will explicitly add GridBoundColumns. Note that you can add these GridBoundColumns at design-time provided you properly set MappingName property for each column.
diff --git a/WindowsForms/Classic/DataBoundGrid/How-To/How-Does-the-Helper-class-Support-Percentage-Sizinng-in-GridControl-or-GridDataBoundGrid.md b/WindowsForms/Classic/DataBoundGrid/How-To/How-Does-the-Helper-class-Support-Percentage-Sizinng-in-GridControl-or-GridDataBoundGrid.md
index c481d0863..5cb0b090a 100644
--- a/WindowsForms/Classic/DataBoundGrid/How-To/How-Does-the-Helper-class-Support-Percentage-Sizinng-in-GridControl-or-GridDataBoundGrid.md
+++ b/WindowsForms/Classic/DataBoundGrid/How-To/How-Does-the-Helper-class-Support-Percentage-Sizinng-in-GridControl-or-GridDataBoundGrid.md
@@ -9,11 +9,11 @@ documentation: ug
# How to support percentage sizing in Windows Forms GridDataBoundGrid
-This page explains How Does the Helper class Support Percentage Sizing in GridControl/GridDataBoundGrid and more details.
+This page explains How Does the Helper class Support Percentage Sizing in Grid Control/GridDataBoundGrid and more details.
-## How Does the Helper class Support Percentage Sizing in GridControl/GridDataBoundGrid
+## How Does the Helper class Support Percentage Sizing in Grid Control/GridDataBoundGrid
-The example given below has a helper class that supports automatic sizing in both GridControl or GridDataBoundGrid in two ways. One way, referred as proportional sizing is where all the columns in the grid are equally sized. The other technique used is referred as the percentage sizing, which allows you to specify that certain columns should occupy certain percentages of the available space for these columns.
+The example given below has a helper class that supports automatic sizing in both Grid Control or GridDataBoundGrid in two ways. One way, referred as proportional sizing is where all the columns in the grid are equally sized. The other technique used is referred as the percentage sizing, which allows you to specify that certain columns should occupy certain percentages of the available space for these columns.
WireGrid and UnwireGrid are the methods used to enable sizing of the helper class. Proportional sizing is achieved by using QueryColWidth event. Percentage sizing will explicitly set ColWidth[index] property for each column.
diff --git a/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Apply-Filtering-on-GridDataBound-Grid-based-on-a-node-selected-in-tree-view.md b/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Apply-Filtering-on-GridDataBound-Grid-based-on-a-node-selected-in-tree-view.md
index 91f008fa3..7de8d4ee1 100644
--- a/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Apply-Filtering-on-GridDataBound-Grid-based-on-a-node-selected-in-tree-view.md
+++ b/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Apply-Filtering-on-GridDataBound-Grid-based-on-a-node-selected-in-tree-view.md
@@ -11,9 +11,9 @@ documentation: ug
This page explains how to apply filter to GridDataBoundGrid based on Tree View selected node and more details.
-## How to Apply Filtering on GridDataBound Grid based on a Node Selected in Tree View?
+## How to Apply Filtering on GridDataBoundGrid based on a Node Selected in Tree View?
-GridDataBound grid is designed to bind data sources such as data table, string collection, data set, and data view. The filter bar can be enabled and hidden in the grid. Before selecting a node in the Tree view, the grid will load all the data from the data source. TreeView_AfterSelect event is used to determine the tree view node and perform filter operation on the grid control corresponding to the node that you selected in the Tree view. The following code example illustrates how to apply filtering on GridDataBound grid based on a node selected in the Tree view.
+GridDataBoundGrid is designed to bind data sources such as data table, string collection, data set, and data view. The filter bar can be enabled and hidden in the grid. Before selecting a node in the Tree view, the grid will load all the data from the data source. TreeView_AfterSelect event is used to determine the tree view node and perform filter operation on the grid control corresponding to the node that you selected in the Tree view. The following code example illustrates how to apply filtering on GridDataBoundGrid based on a node selected in the Tree view.
{% tabs %}
{% highlight c# %}
diff --git a/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Change-the-Mouse-Cursor-for-a-GridControl.md b/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Change-the-Mouse-Cursor-for-a-GridControl.md
index 89552c93d..a6a7a14ab 100644
--- a/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Change-the-Mouse-Cursor-for-a-GridControl.md
+++ b/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Change-the-Mouse-Cursor-for-a-GridControl.md
@@ -1,17 +1,17 @@
---
layout: post
-title: Change GridControl Cursor in WinForms GridDataBoundGrid | Syncfusion®
+title: Change Grid Control Cursor in WinForms GridDataBoundGrid | Syncfusion®
description: Change the mouse cursor in Syncfusion® Windows Forms GridDataBoundGrid by overriding the OnSetCursor method and applying custom cursor settings.
platform: windowsforms
control: GridDataBoundGrid
documentation: ug
---
-# Change the Mouse Cursor for GridControl in WinForms GridDataBoundGrid
+# Change the Mouse Cursor for Grid Control in WinForms GridDataBoundGrid
-This page explains How to Change the Mouse Cursor for a GridControl and more details.
+This page explains How to Change the Mouse Cursor for a Grid Control and more details.
-## How to Change the Mouse Cursor for a GridControl
+## How to Change the Mouse Cursor for a Grid Control
The simplest way is to derive the grid and override OnSetCursor. You can add additional checks to narrow down where to set the cursor.
diff --git a/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Copy-a-Range-of-Cells-to-the-Clipboard.md b/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Copy-a-Range-of-Cells-to-the-Clipboard.md
index 8768bafe2..0f9083a81 100644
--- a/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Copy-a-Range-of-Cells-to-the-Clipboard.md
+++ b/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Copy-a-Range-of-Cells-to-the-Clipboard.md
@@ -18,9 +18,9 @@ You can use CopyTextToClipboard method to copy text from a selected range of cel
{% tabs %}
{% highlight c# %}
-//Copies selected range of cells to clipboard in GridControl.
+//Copies selected range of cells to clipboard in Grid Control.
bool val = this.gridControl1.CutPaste.CopyTextToClipboard(this.gridControl1.Selections.Ranges);
-Console.WriteLine(" Selected Range of cells(GridControl)are in Clipboard. This is"+val);
+Console.WriteLine(" Selected Range of cells(Grid Control)are in Clipboard. This is"+val);
MessageBox.Show("Data copied");
//Copies selected range of cells to clipboard in GridDataBoundGrid.
@@ -31,9 +31,9 @@ MessageBox.Show("Data copied");
{% highlight vb %}
-' Copies a selected range of cells to the clipboard in GridControl.
+' Copies a selected range of cells to the clipboard in Grid Control.
Dim val As Boolean = Me.gridControl1.CutPaste.CopyTextToClipboard(Me.gridControl1.Selections.Ranges)
-Console.WriteLine(" Selected Range of cells(GridControl)are in Clipboard. This is", val)
+Console.WriteLine(" Selected Range of cells(Grid Control)are in Clipboard. This is", val)
MessageBox.Show("Data copied")
'Copies a selected range of cells to the clipboard in GridDataBoundGrid.
diff --git a/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Paste-Clipboard-Contents-Bigger-than-GridDataBoundGrid-row-and-column-count.md b/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Paste-Clipboard-Contents-Bigger-than-GridDataBoundGrid-row-and-column-count.md
index 621ff98d2..f91950408 100644
--- a/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Paste-Clipboard-Contents-Bigger-than-GridDataBoundGrid-row-and-column-count.md
+++ b/WindowsForms/Classic/DataBoundGrid/How-To/How-to-Paste-Clipboard-Contents-Bigger-than-GridDataBoundGrid-row-and-column-count.md
@@ -13,7 +13,7 @@ This page explains How to Paste Clipboard Contents Bigger than GridDataBoundGrid
## How to Paste Clipboard Contents Bigger than GridDataBoundGrid Row and Column Count
-GridDataBoundGrid does not increment row and column count as GridControl. The reason for this is that GridDataBoundGrid does not have its own DataSource, and it has to store these in the relevant DataTable. To add rows and columns in the DataTable, Model.ClipboardPaste handler must be used.
+GridDataBoundGrid does not increment row and column count as Grid Control. The reason for this is that it does not have its own DataSource, and it has to store these in the relevant DataTable. To add rows and columns in the DataTable, Model.ClipboardPaste handler must be used.
In this handler, the clipboard contents that are stored in text format of DataObject will be single string. This has to be split with '\n' and '\t' to refer the rows and columns fashion and this count is compared with the existing row and column count. The necessary extra rows are added then and makes pasting possible.
diff --git a/WindowsForms/Classic/DataBoundGrid/Multi-Row-Record.md b/WindowsForms/Classic/DataBoundGrid/Multi-Row-Record.md
index f2f2a47a1..d08c99d38 100644
--- a/WindowsForms/Classic/DataBoundGrid/Multi-Row-Record.md
+++ b/WindowsForms/Classic/DataBoundGrid/Multi-Row-Record.md
@@ -9,7 +9,7 @@ documentation: ug
# Multi-Row Records in Windows Forms GridDataBoundGrid
-DataBound Grid has support for displaying a single record in multiple rows.
+GridDataBoundGrid has support for displaying a single record in multiple rows.

diff --git a/WindowsForms/Classic/DataBoundGrid/Multiple-Headers.md b/WindowsForms/Classic/DataBoundGrid/Multiple-Headers.md
index 3b02e5c69..bb8938e33 100644
--- a/WindowsForms/Classic/DataBoundGrid/Multiple-Headers.md
+++ b/WindowsForms/Classic/DataBoundGrid/Multiple-Headers.md
@@ -9,7 +9,7 @@ documentation: ug
# Multiple Headers in Windows Forms GridDataBoundGrid
-Grid Data Bound Grid supports display of multiple row and column headers. Additional row headers can be added along side the existing header by setting Model.Rows.HeaderCount and additional column headers can be added below the existing column header by setting the Model.Cols.HeaderCount property.
+GridDataBoundGrid supports display of multiple row and column headers. Additional row headers can be added along side the existing header by setting Model.Rows.HeaderCount and additional column headers can be added below the existing column header by setting the Model.Cols.HeaderCount property.
The following code example illustrates how to display multiple row and column headers.
diff --git a/WindowsForms/Classic/DataBoundGrid/Overview.md b/WindowsForms/Classic/DataBoundGrid/Overview.md
index de4da5f9e..5e2e36fd3 100644
--- a/WindowsForms/Classic/DataBoundGrid/Overview.md
+++ b/WindowsForms/Classic/DataBoundGrid/Overview.md
@@ -9,7 +9,7 @@ documentation: ug
# About Syncfusion® Windows Forms GridDataBoundGrid Control
-The GridDataBoundGrid is a bound grid to display data from the binding source. The GridDataBoundGrid has built-in support to bind any type of data source to the grid. It can be customized at cell level as the GridControl. The GridDataBoundGrid control supports sorting, frozen rows and columns, Excel-like formulas, covered cells, various cell-control types, clipboard operations, zooming cells, and hidden rows and columns.
+The GridDataBoundGrid is a bound grid to display data from the binding source. It has built-in support to bind any type of data source to the grid. It can be customized at cell level as the GridControl. It control supports sorting, frozen rows and columns, Excel-like formulas, covered cells, various cell-control types, clipboard operations, zooming cells, and hidden rows and columns.
## Key features
diff --git a/WindowsForms/Classic/DataBoundGrid/Performance-of-DataBound-Grid.md b/WindowsForms/Classic/DataBoundGrid/Performance-of-DataBound-Grid.md
index eb437168f..c30d87ecb 100644
--- a/WindowsForms/Classic/DataBoundGrid/Performance-of-DataBound-Grid.md
+++ b/WindowsForms/Classic/DataBoundGrid/Performance-of-DataBound-Grid.md
@@ -9,7 +9,7 @@ documentation: ug
# Performance in Windows Forms GridDataBoundGrid
-Essential DataBound Grid can handle large amount of data without a performance hit.
+Essential GridDataBoundGrid can handle large amount of data without a performance hit.

diff --git a/WindowsForms/Classic/DataBoundGrid/Record-Navigation-Bar.md b/WindowsForms/Classic/DataBoundGrid/Record-Navigation-Bar.md
index 6cf6bd0b5..26d45a55c 100644
--- a/WindowsForms/Classic/DataBoundGrid/Record-Navigation-Bar.md
+++ b/WindowsForms/Classic/DataBoundGrid/Record-Navigation-Bar.md
@@ -9,7 +9,7 @@ documentation: ug
# Record Navigation Bar in Windows Forms GridDataBoundGrid
-It is possible to display DataBound Grid within Grid Record Navigation control. This combination will give you a look similar to Microsoft Access.
+It is possible to display GridDataBoundGrid within Grid Record Navigation control. This combination will give you a look similar to Microsoft Access.

@@ -21,7 +21,7 @@ N> For more details, refer to the following browser sample:
## Example
-The following sample displays DataBound Grid within Grid Record Navigation control. This sample was created using the designer.
+The following sample displays GridDataBoundGrid within Grid Record Navigation control. This sample was created using the designer.
1. Step 1: Create an SqlDataAdapter and connect to the Customers table of Northwind database.
@@ -31,22 +31,22 @@ The following sample displays DataBound Grid within Grid Record Navigation contr
2. Step 2: Drag Grid Record Navigation control onto the form.
- 
+ 
-3. Step 3: Drag Grid DataBound Grid onto the Grid Record Navigation control.
+3. Step 3: Drag GridDataBoundGrid onto the Grid Record Navigation control.
- 
+ 
N> Records can be displayed by typing in the NavigationBar.
- 
+ 
-DataBound Grid is displayed within Grid Record Navigation control.
+GridDataBoundGrid is displayed within Grid Record Navigation control.
diff --git a/WindowsForms/Classic/DataBoundGrid/Sort-by-DisplayMember.md b/WindowsForms/Classic/DataBoundGrid/Sort-by-DisplayMember.md
index ede5e1834..788b6d992 100644
--- a/WindowsForms/Classic/DataBoundGrid/Sort-by-DisplayMember.md
+++ b/WindowsForms/Classic/DataBoundGrid/Sort-by-DisplayMember.md
@@ -9,11 +9,11 @@ documentation: ug
# Sort by DisplayMember in Windows Forms GridDataBoundGrid
-By default, sorting is done in DataBound Grid through IBindingList.
+By default, sorting is done in GridDataBoundGrid through IBindingList.
N> IBindingList interface provides features required to support both complex and simple scenarios when binding to a data source.
-Sort method relies on the data source for the grid and by default sorting is done based on the value members present in the data source and not based on display member. We can implement Sort By DisplayMember feature in Data Bound Grid. The code for foreign key column can be added to the View of the data table so that the sort behavior can be redirected to use foreign key column linked to the combo box column when the user sorts combo box column.
+Sort method relies on the data source for the grid and by default sorting is done based on the value members present in the data source and not based on display member. We can implement Sort By DisplayMember feature in GridDataBoundGrid. The code for foreign key column can be added to the View of the data table so that the sort behavior can be redirected to use foreign key column linked to the combo box column when the user sorts combo box column.
## Example
diff --git a/WindowsForms/Classic/DataBoundGrid/Sorting.md b/WindowsForms/Classic/DataBoundGrid/Sorting.md
index 8cefc9054..5701fba9a 100644
--- a/WindowsForms/Classic/DataBoundGrid/Sorting.md
+++ b/WindowsForms/Classic/DataBoundGrid/Sorting.md
@@ -9,7 +9,7 @@ documentation: ug
# Sorting in Windows Forms GridDataBoundGrid
-Sorting feature available in DataBound Grid control allows the user to arrange items in a sequence and/or in different sets. SortBehavior property under the control allows you to sort a column in a data bound grid when the column header cell is clicked. Implementation of this property will rearrange the cell data in the clicked column. This property can be set using either a code or designer. By default, it is set to perform sorting on double-click. GridSortBehavior is an enumeration that defines the sorting behavior options/values.
+Sorting feature available in GridDataBoundGrid control allows the user to arrange items in a sequence and/or in different sets. SortBehavior property under the control allows you to sort a column in a data bound grid when the column header cell is clicked. Implementation of this property will rearrange the cell data in the clicked column. This property can be set using either a code or designer. By default, it is set to perform sorting on double-click. GridSortBehavior is an enumeration that defines the sorting behavior options/values.
Following is the list of options/values that can be assigned to SortBehavior property:
@@ -32,11 +32,11 @@ Me.gridDataBoundGrid1.SortBehavior = GridSortBehavior.SingleClick
## Sort by DisplayMember
-By default, sorting is done in DataBound Grid through IBindingList.
+By default, sorting is done in GridDataBoundGrid through IBindingList.
N> IBindingList interface provides features required to support both complex and simple scenarios when binding to a data source.
-Sort method relies on the data source for the grid and by default sorting is done based on the value members present in the data source and not based on display member. We can implement Sort By DisplayMember feature in Data Bound Grid. The code for foreign key column can be added to the View of the data table so that the sort behavior can be redirected to use foreign key column linked to the combo box column when the user sorts combo box column.
+Sort method relies on the data source for the grid and by default sorting is done based on the value members present in the data source and not based on display member. We can implement Sort By DisplayMember feature in GridDataBoundGrid. The code for foreign key column can be added to the View of the data table so that the sort behavior can be redirected to use foreign key column linked to the combo box column when the user sorts combo box column.
### Example
diff --git a/WindowsForms/Classic/DataBoundGrid/Using-Master-Details-Relation.md b/WindowsForms/Classic/DataBoundGrid/Using-Master-Details-Relation.md
index d4a5760fd..7bce6cda4 100644
--- a/WindowsForms/Classic/DataBoundGrid/Using-Master-Details-Relation.md
+++ b/WindowsForms/Classic/DataBoundGrid/Using-Master-Details-Relation.md
@@ -19,7 +19,7 @@ Here is a screen shot showing you Master-Detail grid pair using Northwind Custom
-Here is the code that implements this Master-Detail form. In the designer, two DataAdapters (one for each table), Customers and Orders are added to the form. A DataSet will be generated as well. Two DataBound Grids are also positioned on the form. The Form_Load event listed below will set up all the data binding between DataSet that is holding the two tables and the two grids.
+Here is the code that implements this Master-Detail form. In the designer, two DataAdapters (one for each table), Customers and Orders are added to the form. A DataSet will be generated as well. Two GridDataBoundGrid's are also positioned on the form. The Form_Load event listed below will set up all the data binding between DataSet that is holding the two tables and the two grids.
{% tabs %}
{% highlight c# %}