From a810a581a6657885ab6fb0de53f6c29233db2faf Mon Sep 17 00:00:00 2001 From: Dinesh Rangasamy Date: Wed, 9 Sep 2026 11:22:20 +0530 Subject: [PATCH] UWP-Redundant-CellGrid : Avoid Redundant words in UWP Excel-like Grid --- uwp/CellGrid/Appearance.md | 12 +++---- uwp/CellGrid/Cell-Styles.md | 16 ++++----- uwp/CellGrid/Cell-Types.md | 18 +++++----- uwp/CellGrid/Custom-Cell-Type.md | 30 ++++++++-------- uwp/CellGrid/Editing.md | 12 +++---- uwp/CellGrid/Formulas.md | 4 +-- uwp/CellGrid/Getting-Started.md | 29 ++++++++-------- uwp/CellGrid/Importing.md | 8 ++--- uwp/CellGrid/Interactive-Features.md | 37 ++++++++++---------- uwp/CellGrid/Rows-and-Columns.md | 26 +++++++------- uwp/CellGrid/Selection.md | 46 ++++++++++++------------- uwp/CellGrid/Styles-and-Formatting.md | 16 ++++----- uwp/CellGrid/Working-with-SfCellGrid.md | 36 +++++++++---------- 13 files changed, 145 insertions(+), 145 deletions(-) diff --git a/uwp/CellGrid/Appearance.md b/uwp/CellGrid/Appearance.md index aeff85df..5483dcfd 100644 --- a/uwp/CellGrid/Appearance.md +++ b/uwp/CellGrid/Appearance.md @@ -9,7 +9,7 @@ documentation: ug # Appearance in UWP Excel-like Grid -This section explains about customizing the appearance of SfCellGrid. +This section explains about customizing the appearance of Excel-like Grid. ## Covered Cells @@ -18,7 +18,7 @@ There are different possible options to form a covered range. The range can be r ### Creating Covered Range -To create a covered cell, users need to add `CoveredCellInfo` item to the `CoveredCells` of SfCellGrid. +To create a covered cell, users need to add `CoveredCellInfo` item to the `CoveredCells` of Excel-like Grid. {% tabs %} {% highlight c# %} @@ -76,7 +76,7 @@ private void Model_QueryCoveredRange(object sender, GridQueryCoveredRangeEventAr ### Clearing the Covered Range -Covered cells in SfCellGrid can be removed by using `Clear` method. +Covered cells in Excel-like Grid can be removed by using `Clear` method. {% tabs %} {% highlight c# %} @@ -109,7 +109,7 @@ bool isCovered = cellGrid.CoveredCells.Find(3, 4, out range); ## Floating Cells Floating cells are the cells in which if the content exceeds the length of the cell, then content will be floated to the adjacent cell if empty. -By default, the floating cell behavior will be enabled in SfCellGrid. If you want to disable, then set `AllowFloatingCell` property to false. +By default, the floating cell behavior will be enabled in the Excel-like Grid. If you want to disable, then set `AllowFloatingCell` property to false. {% tabs %} {% highlight c# %} @@ -136,9 +136,9 @@ cellGrid.AllowFloatingCellInEdit = false; ## Conditional Formatting -Conditional formatting is a process of applying customized styles to any object based on specified conditions. SfCellGrid allows the user to format the cells based on a certain condition. +Conditional formatting is a process of applying customized styles to any object based on specified conditions. The Excel-like Grid allows the user to format the cells based on a certain condition. -Conditional formatting can be applied to SfCellGrid by using `ConditionalFormats` property which is an observable collection, where the users can add required number of formats of type `GridConditionalFormat`. +Conditional formatting can be applied to the Excel-like Grid by using `ConditionalFormats` property which is an observable collection, where the users can add required number of formats of type `GridConditionalFormat`. Using the `GridConditionalFormat` class, users can specify the criteria for the cells such as `GridConditionalFormatType`, `GridConditionType` and the value. The `Style` property of GridConditionalFormat class is used to set the specific styles for the cells. Once these specifications are defined, the defined styles are applied to only those cells which satisfy the condition. diff --git a/uwp/CellGrid/Cell-Styles.md b/uwp/CellGrid/Cell-Styles.md index 5595ed39..2982c307 100644 --- a/uwp/CellGrid/Cell-Styles.md +++ b/uwp/CellGrid/Cell-Styles.md @@ -9,7 +9,7 @@ documentation: ug # Cell Styles in UWP Excel-like Grid -This section explains about how to apply the cell styles to customize the appearance in SfCellGrid. +This section explains about how to apply the cell styles to customize the appearance in the Excel-like Grid. ## BaseStyles @@ -30,7 +30,7 @@ cellGrid.Model[5,3].BaseStyle = "custom"; ### QueryBaseStyle Event - `QueryBaseStyle` Event is used to apply the `BaseStyle` at run time in SfCellGrid instead of storing in the base style collection. + `QueryBaseStyle` Event is used to apply the `BaseStyle` at run time in Excel-like Grid instead of storing in the base style collection. {% tabs %} {% highlight c# %} @@ -68,7 +68,7 @@ private void Model_QueryBaseStyles(object sender, Syncfusion.UI.Xaml.CellGrid.St ## TableStyle TableStyle is a single `GridStyleInfo` object that is associated with the entire grid. To apply the styles for the each and every cell in -SfCellGrid, `TableStyle` property is used +Excel-like Grid, `TableStyle` property is used {% tabs %} {% highlight c# %} @@ -85,7 +85,7 @@ cellGrid.Model.TableStyle.Borders.All = new Pen(new SolidColorBrush(Colors.Orang ## RowStyles -RowStyles are `GridStyleInfo` objects that are associated with each row in SfCellGrid. To apply styles for particular row or range of rows, `RowStyles` property is used. +RowStyles are `GridStyleInfo` objects that are associated with each row in the Excel-like Grid. To apply styles for particular row or range of rows, `RowStyles` property is used. {% tabs %} {% highlight c# %} @@ -103,7 +103,7 @@ cellGrid.Model.RowStyles[3].Borders.All = new Pen(new SolidColorBrush(Colors.Ora ## ColStyles -ColStyles are `GridStyleInfo` objects that are associated with each column in SfCellGrid. To apply styles for particular column or range of columns, `ColStyles` property is used. +ColStyles are `GridStyleInfo` objects that are associated with each column in Excel-like Grid. To apply styles for particular column or range of columns, `ColStyles` property is used. {% tabs %} {% highlight c# %} @@ -119,11 +119,11 @@ cellGrid.Model.ColStyles[4].Borders.All = new Pen(new SolidColorBrush(Colors.Gra {% endhighlight %} {% endtabs %} -N> `RowColStylePrecedence` property of `GridStyleInfo` is for setting the priority to either row/column when both `RowStyles` and `ColStyles` are used in SfCellGrid. Default `PrecedenceStyle` is Row. +N> `RowColStylePrecedence` property of `GridStyleInfo` is for setting the priority to either row/column when both `RowStyles` and `ColStyles` are used in the Excel-like Grid. Default `PrecedenceStyle` is Row. ## HeaderStyle -HeaderStyle are `GridStyleInfo` objects that are associated with header rows/columns in SfCellGrid. To apply styles for header rows or columns, `HeaderStyle` property is used. +HeaderStyle are `GridStyleInfo` objects that are associated with header rows/columns in the Excel-like Grid. To apply styles for header rows or columns, `HeaderStyle` property is used. {% tabs %} {% highlight c# %} @@ -145,7 +145,7 @@ cellGrid.Model.HeaderStyle.Borders.All = new Pen(new SolidColorBrush(Colors.Oran ## FooterStyle -FooterStyle are `GridStyleInfo` objects that are associated with footer rows/columns in SfCellGrid. To apply styles for footer rows or columns, `FooterStyle` property is used. +FooterStyle are `GridStyleInfo` objects that are associated with footer rows/columns in Excel-like Grid. To apply styles for footer rows or columns, `FooterStyle` property is used. {% tabs %} {% highlight c# %} diff --git a/uwp/CellGrid/Cell-Types.md b/uwp/CellGrid/Cell-Types.md index d5d9e688..b61f1562 100644 --- a/uwp/CellGrid/Cell-Types.md +++ b/uwp/CellGrid/Cell-Types.md @@ -9,7 +9,7 @@ documentation: ug # Cell Types in UWP Excel-like Grid -SfCellGrid allows the inclusion of some special controls in the cells. This attribute of a grid cell is referred to as its Cell Type. +The Excel-like Grid allows the inclusion of some special controls in the cells. This attribute of a grid cell is referred to as its Cell Type. ## Setting cell type for a cell @@ -26,7 +26,7 @@ cellGrid.Model[2, 2].CellValue = true; ## TextBox Cell Type -TextBox cells are the default cell type of SfCellGrid. TextBox cells displays text which can be edited when clicked. +TextBox cells are the default cell type of Excel-like Grid. TextBox cells displays text which can be edited when clicked. {% tabs %} {% highlight c# %} @@ -66,7 +66,7 @@ cellGrid.Model.ColStyles[1].Background = new SolidColorBrush(Colors.LightPink); ## CheckBox Cell Type -`CheckBox` cell type displays a check box in the mentioned cell of SfCellGrid. The check box has three states: **Checked, Unchecked and Indeterminate**. It is possible to decide whether the check box should behave as a two-state check box or a three-state check box +`CheckBox` cell type displays a check box in the mentioned cell of the Excel-like Grid. The check box has three states: **Checked, Unchecked and Indeterminate**. It is possible to decide whether the check box should behave as a two-state check box or a three-state check box by using the `IsThreeState` property. {% tabs %} @@ -81,7 +81,7 @@ cellGrid.Model[2, 2].CellValue = true; ## ComboBox Cell Type -`ComboBox` cell type displays a combo box in the mentioned cell of SfCellGrid. A combo box is a component with a drop-down arrow that users click to display an associated list of choices. +`ComboBox` cell type displays a combo box in the mentioned cell of Excel-like Grid. A combo box is a component with a drop-down arrow that users click to display an associated list of choices. This cell type allows you to choose the cell value from a drop-down list. {% tabs %} @@ -95,7 +95,7 @@ cellGrid.Model[2, 2].ComboBoxEdit.ItemSource = new List {1,2,3,4,5,6 }; ## DateTime Cell Type -This cell type can be used to display the DateTime in the mentioned cell of SfCellGrid. Users can customize this date time cell by using `DateTimeEdit` property of `GridStyleInfo` class. +This cell type can be used to display the DateTime in the mentioned cell of the Excel-like Grid. Users can customize this date time cell by using `DateTimeEdit` property of `GridStyleInfo` class. {% tabs %} {% highlight c# %} @@ -205,7 +205,7 @@ Gets or sets the percentage format type. ## UpDown Cell Type -This cell type displays up and down repeat buttons to increment and decrement the values in the cell of SfCellGrid. User can display different formats like currency format, scientific format, etc., +This cell type displays up and down repeat buttons to increment and decrement the values in the cell of Excel-like Grid. User can display different formats like currency format, scientific format, etc., {% tabs %} {% highlight c# %} @@ -277,7 +277,7 @@ Gets or sets the alignment of the contents in the cell. ## Hyperlink Cell Type -This cell type displays the hyperlink in the cell of SfCellGrid. This hyperlink cell type will be useful in navigating to browsers, other cells, mail. etc., +This cell type displays the hyperlink in the cell of Excel-like Grid. This hyperlink cell type will be useful in navigating to browsers, other cells, mail. etc., The Url or the reference for the hyperlink cell will be given in the `Hyperlink` property. {% tabs %} @@ -319,7 +319,7 @@ cellGrid.Model[4, 5].CellItemTemplate = this.Resources["ButtonTemplate"] as Data ## Formula Cell Type -This cell type is used to enter the formula in the cell of SfCellGrid. The formulas in the `CellValue` property must be preceded with "=" sign. +This cell type is used to enter the formula in the cell of Excel-like Grid. The formulas in the `CellValue` property must be preceded with "=" sign. {% tabs %} {% highlight c# %} @@ -330,4 +330,4 @@ cellGrid.Model[4, 4].CellValue = "=Sum(A1:A2)"; {% endhighlight %} {% endtabs %} -For more information regarding supported formulas in SfCellGrid, please refer [here](https://help.syncfusion.com/uwp/sfcellgrid/formulas#supported-functions). +For more information regarding supported formulas in Excel-like Grid, please refer [here](https://help.syncfusion.com/uwp/sfcellgrid/formulas#supported-functions). diff --git a/uwp/CellGrid/Custom-Cell-Type.md b/uwp/CellGrid/Custom-Cell-Type.md index ceccb06c..ff203de2 100644 --- a/uwp/CellGrid/Custom-Cell-Type.md +++ b/uwp/CellGrid/Custom-Cell-Type.md @@ -9,16 +9,16 @@ documentation: ug # Custom Cell Type in UWP Excel-like Grid -SfCellGrid provides support to customize the cell by loading any user control into the cell. +The Excel-like Grid provides support to customize the cell by loading any user control into the cell. -This requires a cell renderer class which creates the custom cell control and handles the UI requirements. The custom cell type can be created by registering the cell renderer to the SfCellGrid. It can be enabled by assigning its name to the `CellType` property of `GridStyleInfo` class. +This requires a cell renderer class which creates the custom cell control and handles the UI requirements. The custom cell type can be created by registering the cell renderer to the Excel-like Grid. It can be enabled by assigning its name to the `CellType` property of `GridStyleInfo` class. In general, the built-in cell types are also constructed only in this way. Every such cell type has its own renderer classes in the code base which are inherited from `GridVirtualizingCellRenderer` class. This class defines the basic functionality for a cell type. To customize the cell, please follow the below steps * Create a Custom Cell Renderer class -* Associating the Custom Cell Renderer to SfCellGrid +* Associating the Custom Cell Renderer to the Excel-like Grid ## Creating a new Custom Cell Type(SfCalendar) @@ -41,8 +41,8 @@ public class CalendarCellRenderer : GridVirtualizingCellRenderer Validate -Validates the current cell in the SfCellGrid. +Validates the current cell in the Excel-like Grid. diff --git a/uwp/CellGrid/Formulas.md b/uwp/CellGrid/Formulas.md index 5241a36e..96524849 100644 --- a/uwp/CellGrid/Formulas.md +++ b/uwp/CellGrid/Formulas.md @@ -9,7 +9,7 @@ documentation: ug # Formulas in UWP Excel-like Grid -SfCellGrid calculation engine offers automated calculation over a formula, expression. SfCellGrid`s calculation engine is preloaded with 409 formulas covering a broad range of business functions. +Excel-like Grid calculation engine offers automated calculation over a formula, expression. Excel-like Grid`s calculation engine is preloaded with 409 formulas covering a broad range of business functions. ## Adding Formula into cell @@ -28,7 +28,7 @@ N> If you are inserting the formula through button click event, then you need to ## Supported functions -Following is a list of functions that are supported by SfCellGrid. +Following is a list of functions that are supported by the Excel-like Grid. ### Database Functions diff --git a/uwp/CellGrid/Getting-Started.md b/uwp/CellGrid/Getting-Started.md index fd29b97e..6726784c 100644 --- a/uwp/CellGrid/Getting-Started.md +++ b/uwp/CellGrid/Getting-Started.md @@ -9,11 +9,11 @@ documentation: ug # Getting Started with UWP Excel-like Grid -This section helps you to get started with SfCellGrid. +This section helps you to get started with the Excel-like Grid. ## Assemblies Deployment -Below table describes, list of assemblies required to be added in project when the SfCellGrid control is used in your application. +Below table describes, list of assemblies required to be added in project when the Excel-like Grid control is used in your application. @@ -40,7 +40,7 @@ Contains the classes which holds the controls like SfDropDownButton, SfTextBoxEx ### Optional Assemblies -Below Assembly can be added to enable the importing support in SfCellGrid. +Below Assembly can be added to enable the importing support in Excel-like Grid.
@@ -54,21 +54,20 @@ Contains the base classes which is responsible for read and write in Excel files
-## Create Simple Application with SfCellGrid - -SfCellGrid control can be added into the application either via designer or via coding. +## Create Simple Application with Excel-like Grid +Excel-like Grid control can be added into the application either via designer or via coding. ### Adding control via designer 1. Create a new UWP application in Visual Studio. -2. Open the Visual Studio **Tool** **box**. Navigate to “Syncfusion® Controls” tab, and find the SfCellGrid in toolbox items. -3. Drag **SfCellGrid** and drop in to the designer area from the toolbox. +2. Open the Visual Studio **Tool** **box**. Navigate to “Syncfusion® Controls” tab, and find the Excel-like Grid in toolbox items. +3. Drag **Excel-like Grid** and drop in to the designer area from the toolbox. -![SfCellGrid_UWP_img1](Getting-Started_images/SfCellGrid_UWP_img1.jpeg) +![UWP_img1](Getting-Started_images/SfCellGrid_UWP_img1.jpeg) ### Adding control via coding -SfCellGrid is available in the following namespace “__Syncfusion__.__UI__.__Xaml__.__CellGrid__” and it can be created programmatically either by using __XAML__ or __C#__ code. +The Excel-like Grid is available in the following namespace “__Syncfusion__.__UI__.__Xaml__.__CellGrid__” and it can be created programmatically either by using __XAML__ or __C#__ code. #### Through XAML @@ -118,7 +117,7 @@ this.Grid.Children.Add(cellGrid); ## Generating Rows and Columns -To generate rows and columns in SfCellGrid, user need to specify the **RowCount** and **ColumnCount** either by using XAML or C# code. +To generate rows and columns in Excel-like Grid, user need to specify the **RowCount** and **ColumnCount** either by using XAML or C# code. {% tabs %} @@ -164,11 +163,11 @@ cellGrid.ColumnCount = 100; ## Populating the Data -To populate the data in SfCellGrid, **RowCount** and **ColumnCount** are mandatory. Once **RowCount** and **ColumnCount** are specified in SfCellGrid, data can be populated by using one of the following methods. +To populate the data in Excel-like Grid, **RowCount** and **ColumnCount** are mandatory. Once **RowCount** and **ColumnCount** are specified in the control, data can be populated by using one of the following methods. ### Internal Storage -User can populate the grid by storing the cell style in its internal storage. SfCellGrid holds all the data and style related information in **GridStyleInfo**. Individual cells can be accessed using the **GridModel** indexer, which takes row and column indices. +User can populate the grid by storing the cell style in its internal storage. Excel-like Grid holds all the data and style related information in **GridStyleInfo**. Individual cells can be accessed using the **GridModel** indexer, which takes row and column indices. Based on the row and column indices, the data can be populated by looping the cells. {% tabs %} @@ -195,7 +194,7 @@ for (int row = 0; row < 100; row++) ### Virtual Mode -User can also populate the data by on-demand using `QueryCellInfo` event. In this event, SfCellGrid does not store cell style in its internal storage, thus ensuring optimized performance. +User can also populate the data by on-demand using `QueryCellInfo` event. In this event, Excel-like Grid does not store cell style in its internal storage, thus ensuring optimized performance. `QueryCellInfo` event will be triggered for each cell when it comes into view. {% tabs %} @@ -221,4 +220,4 @@ private void Model_QueryCellInfo(object sender, Syncfusion.UI.Xaml.CellGrid.Styl You can get the following output while executing the application, -![SfCellGrid_UWP_img2](Getting-Started_images/SfCellGrid_UWP_img2.jpeg) +![UWP_img2](Getting-Started_images/SfCellGrid_UWP_img2.jpeg) diff --git a/uwp/CellGrid/Importing.md b/uwp/CellGrid/Importing.md index e7dc7802..8b877ac1 100644 --- a/uwp/CellGrid/Importing.md +++ b/uwp/CellGrid/Importing.md @@ -9,7 +9,7 @@ documentation: ug # Importing in UWP Excel-like Grid -The `ExcelImportExtension` class is used to import entire cells from the Excel sheet to SfCellGrid. +The `ExcelImportExtension` class is used to import entire cells from the Excel sheet to Excel-like Grid. Following styles are imported from Excel: @@ -49,7 +49,7 @@ option.ImportMode = ImportMode.Text; ## Using stream -The SfCellGrid provides support to import the data from Excel using the `ImportFromExcel` method by passing the Excel file as `Stream`. +The Excel-like Grid provides support to import the data from Excel using the `ImportFromExcel` method by passing the Excel file as `Stream`. {% tabs %} {% highlight c# %} @@ -74,7 +74,7 @@ cellGrid.ImportFromExcel(fileStream,option); ## Using worksheet -The SfCellGrid provides support to import the data from Excel using the `ImportFromExcel` method by passing the worksheet(`IWorksheet`) from XlsIO. +The Excel-like Grid provides support to import the data from Excel using the `ImportFromExcel` method by passing the worksheet(`IWorksheet`) from XlsIO. {% tabs %} {% highlight c# %} @@ -102,7 +102,7 @@ cellGrid.ImportFromExcel((workbook as IWorkbook).ActiveSheet,option); ## Using storage file -The SfCellGrid provides support to import the data from Excel using the `ImportFromExcel` method by passing the Excel file as `StorageFile`. +The Excel-like Grid provides support to import the data from Excel using the `ImportFromExcel` method by passing the Excel file as `StorageFile`. {% tabs %} {% highlight c# %} diff --git a/uwp/CellGrid/Interactive-Features.md b/uwp/CellGrid/Interactive-Features.md index d6d11ef0..1801b280 100644 --- a/uwp/CellGrid/Interactive-Features.md +++ b/uwp/CellGrid/Interactive-Features.md @@ -9,11 +9,12 @@ documentation: ug # Interactive Features in UWP Excel-like Grid -This section explains interactive operations in the SfCellGrid. +The Excel-like Grid provides support to import the data from Excel using the `ImportFromExcel` method by passing the Excel file as `StorageFile`. +This section explains interactive operations in the . ## Clipboard operations -The supported clipboard operations, cut, copy, and paste are managed in `GridCopyPaste` class. This class can be accessed by using the `CopyPaste` property of the SfCellGrid that provides methods to perform clipboard operations. +The supported clipboard operations, cut, copy, and paste are managed in `GridCopyPaste` class. This class can be accessed by using the `CopyPaste` property of the Excel-like Grid that provides methods to perform clipboard operations. ### Cut @@ -34,7 +35,7 @@ cellGrid.CopyPaste.Copy(range, true); #### Event related with cut operation -The `ClipboardCut` event occurs when performing cut operation in the SfCellGrid. It receives an argument of type `GridCutPasteEventArgs` that provides an option to get the copied range and handles this event. +The `ClipboardCut` event occurs when performing cut operation in the Excel-like Grid. It receives an argument of type `GridCutPasteEventArgs` that provides an option to get the copied range and handles this event. {% tabs %} {% highlight c# %} @@ -69,7 +70,7 @@ cellGrid.CopyPaste.Copy(range, false); #### Event related with copy operation -The `ClipboardCopy` event occurs when performing copy operation in the SfCellGrid. It receives an argument of type `GridCutPasteEventArgs` that provides an option to get the copied range and handles this event. +The `ClipboardCopy` event occurs when performing copy operation in the Excel-like Grid. It receives an argument of type `GridCutPasteEventArgs` that provides an option to get the copied range and handles this event. {% tabs %} {% highlight c# %} @@ -86,7 +87,7 @@ private void Model_ClipboardCopy(object sender, GridCutPasteEventArgs e) ### Paste -The copied ranges from the SfCellGrid can be pasted by using the `Paste` method or keyboard keys Ctrl + V combination. +The copied ranges from the Excel-like Grid can be pasted by using the `Paste` method or keyboard keys Ctrl + V combination. {% tabs %} {% highlight c# %} @@ -140,7 +141,7 @@ Copies and pastes from the clipboard without pasting any styles. #### Event related with paste operation -The `ClipboardPaste` event occurs when performing paste operation in the SfCellGrid. It receives an argument of type `GridCutPasteEventArgs` that provides an option to get or set the pasting range and handles this event. +The `ClipboardPaste` event occurs when performing paste operation in the Excel-like Grid. It receives an argument of type `GridCutPasteEventArgs` that provides an option to get or set the pasting range and handles this event. {% tabs %} {% highlight c# %} @@ -157,7 +158,7 @@ private void Model_ClipboardPaste(object sender, GridCutPasteEventArgs e) ## Tooltip -The SfCellGrid provides support for adding tooltip for individual cells. Tooltip will be displayed as small pop-up window when the mouse hover the cells. +The Excel-like Grid provides support for adding tooltip for individual cells. Tooltip will be displayed as small pop-up window when the mouse hover the cells. To display the tooltip, set the `ShowTooltip` property to true. @@ -196,7 +197,7 @@ cellGrid.Model.RowStyles[3].Tooltip = "Syncfusion"; ### Customization of tooltip -The tooltip can be customized by defining a custom data template and assign to the `TooltipTemplate` property of the SfCellGrid. +The tooltip can be customized by defining a custom data template and assign to the `TooltipTemplate` property of the Excel-like Grid. {% tabs %} {% highlight xaml %} @@ -227,7 +228,7 @@ N> Customized data template should be defined in SfCellGrid.Resources in XAML fi ### Reset tooltip -The `ResetTooltip` method is used to reset or remove the tooltip from the SfCellGrid. +The `ResetTooltip` method is used to reset or remove the tooltip from the Excel-like Grid. {% tabs %} {% highlight c# %} @@ -239,7 +240,7 @@ cellGrid.Model[3, 3].ResetTooltip(); ### Reset tooltip template -The `ResetTooltipTemplate` method is used to reset or remove the defined custom tooltip template from the SfCellGrid. +The `ResetTooltipTemplate` method is used to reset or remove the defined custom tooltip template from the Excel-like Grid. {% tabs %} {% highlight c# %} @@ -251,7 +252,7 @@ cellGrid.Model[3, 3].ResetTooltipTemplate(); ### CellTooltipOpening event -The `CellTooltipOpening` event occurs when opening the tooltip in the SfCellGrid. It receives an argument of type `CellTooltipOpeningEventArgs` containing the following information about the event. +The `CellTooltipOpening` event occurs when opening the tooltip in the Excel-like Grid. It receives an argument of type `CellTooltipOpeningEventArgs` containing the following information about the event. @@ -289,7 +290,7 @@ private void CellGrid_CellTooltipOpening(object sender, CellTooltipOpeningEventA ## Comment tip -The SfCellGrid provides support for adding the Excel-like comment tip to the individual cells. This acts as note that provides more information about the data in an individual cell on mouse hover. +The Excel-like Grid provides support for adding the Excel-like comment tip to the individual cells. This acts as note that provides more information about the data in an individual cell on mouse hover. When a cell has a comment, a red indicator appears in the corner of the cell. When resetting the pointer on the cell, the comment appears. @@ -342,7 +343,7 @@ cellGrid.Model[5, 5].CommentBrush = new SolidColorBrush(Colors.GreenYellow); ### Customization of comment -The comment can be customized by defining a custom data template and assign to the `CommentTemplate` property of the SfCellGrid. +The comment can be customized by defining a custom data template and assign to the `CommentTemplate` property of the Excel-like Grid. {% tabs %} {% highlight xaml %} @@ -373,7 +374,7 @@ N> Customized data template should be defined in the SfCellGrid.Resources in XAM ### Reset comment -The `ResetComment` method is used to reset or remove the comment from the SfCellGrid. +The `ResetComment` method is used to reset or remove the comment from the Excel-like Grid. {% tabs %} {% highlight c# %} @@ -385,7 +386,7 @@ cellGrid.Model[3, 3].ResetComment(); ### Reset comment template -The `ResetCommentTemplate` method is used to reset or remove the custom comment template defined in the SfCellGrid. +The `ResetCommentTemplate` method is used to reset or remove the custom comment template defined in the Excel-like Grid. {% tabs %} {% highlight c# %} @@ -397,7 +398,7 @@ cellGrid.Model[3, 3].ResetCommentTemplate(); ### CellCommentOpening event -The `CellCommentOpening` event occurs when opening the comment in the SfCellGrid. It receives an argument of type `CellCommentOpeningEventArgs` containing the following information about the event. +The `CellCommentOpening` event occurs when opening the comment in the Excel-like Grid. It receives an argument of type `CellCommentOpeningEventArgs` containing the following information about the event.
@@ -440,7 +441,7 @@ private void CellGrid_CellCommentOpening(object sender, CellCommentOpeningEventA ## Context menu -Context menu is a customizable menu used for various functionalities. The context menu opens when the user right-click the cell or selection of cells in the SfCellGrid. +Context menu is a customizable menu used for various functionalities. The context menu opens when the user right-click the cell or selection of cells in the Excel-like Grid. User can add their own menu items and assign to the `CellContextMenu` property. @@ -469,7 +470,7 @@ public ContextMenu menu() ### CellContextMenuOpening event -This event occurs when the context menu opens in the SfCellGrid. It receives an argument of type `CellContextMenuOpeningEventArgs` containing the following information about the event. +This event occurs when the context menu opens in the Excel-like Grid. It receives an argument of type `CellContextMenuOpeningEventArgs` containing the following information about the event.
diff --git a/uwp/CellGrid/Rows-and-Columns.md b/uwp/CellGrid/Rows-and-Columns.md index 82653542..295178af 100644 --- a/uwp/CellGrid/Rows-and-Columns.md +++ b/uwp/CellGrid/Rows-and-Columns.md @@ -9,11 +9,11 @@ documentation: ug # Rows and Columns in UWP Excel-like Grid -This section explains the operations related with rows and columns in the SfCellGrid. +This section explains the operations related with rows and columns in the Excel-like Grid. ## Insert rows and columns -The SfCellGrid provides support for dynamically inserting rows and columns at a given position. +The Excel-like Grid provides support for dynamically inserting rows and columns at a given position. {% tabs %} {% highlight c# %} @@ -31,7 +31,7 @@ cellGrid.Model.InsertColumns(3, 5); ### Events related with insertion -After inserting rows and columns in the SfCellGrid, the `RowsInserted` and `ColumnsInserted` events will be invoked to get the number of inserted rows or columns and the insertion index. +After inserting rows and columns in the Excel-like Grid, the `RowsInserted` and `ColumnsInserted` events will be invoked to get the number of inserted rows or columns and the insertion index. {% tabs %} {% highlight c# %} @@ -63,7 +63,7 @@ private void Model_RowsInserted(object sender, GridRangeInsertedEventArgs e) ## Delete rows and columns -The SfCellGrid provides support for deleting rows and columns from the given position. +The Excel-like Grid provides support for deleting rows and columns from the given position. {% tabs %} {% highlight c# %} @@ -113,7 +113,7 @@ private void Model_RowsRemoved(object sender, GridRangeRemovedEventArgs e) ## Hide rows and columns -The SfCellGrid provides support to hide rows or columns by passing the last argument as `true` in the `SetHidden` method of `RowHeights` and `ColumnWidths` properties. +The Excel-like Grid provides support to hide rows or columns by passing the last argument as `true` in the `SetHidden` method of `RowHeights` and `ColumnWidths` properties. {% tabs %} {% highlight c# %} @@ -131,7 +131,7 @@ cellGrid.ColumnWidths.SetHidden(4, 5, true); ## Unhide rows and columns -Unhide the rows or columns in the SfCellGrid by passing the last argument as `false` in the `SetHidden` method of `RowHeights` and `ColumnWidths` properties. +Unhide the rows or columns in the Excel-like Grid by passing the last argument as `false` in the `SetHidden` method of `RowHeights` and `ColumnWidths` properties. {% tabs %} {% highlight c# %} @@ -173,7 +173,7 @@ private void ColumnWidths_LineHiddenChanged(object sender, HiddenRangeChangedEve ## Row height and column width -The SfCellGrid provides support to adjust the row height and column width by using the `SetRowHeight` and `SetColumnWidth` methods. +The Excel-like Grid provides support to adjust the row height and column width by using the `SetRowHeight` and `SetColumnWidth` methods. {% tabs %} {% highlight c# %} @@ -196,7 +196,7 @@ cellGrid.ColumnWidths.DefaultLineSize = 80; ### Events related with RowHeight or ColumnWidth -After changing the row height or column width in the SfCellGrid, the `LineSizeChanged` event for row heights or column widths will be invoked to get old and resized heights or widths of the rows or columns. +After changing the row height or column width in the Excel-like Grid, the `LineSizeChanged` event for row heights or column widths will be invoked to get old and resized heights or widths of the rows or columns. {% tabs %} {% highlight c# %} @@ -240,7 +240,7 @@ private void ColumnWidths_DefaultLineSizeChanged(object sender, DefaultLineSizeC ## Freeze rows and columns -The SfCellGrid provides support to keep an area of a visible grid when scrolling to another area by fixing any number of rows and columns is called freezing. +The Excel-like Grid provides support to keep an area of a visible grid when scrolling to another area by fixing any number of rows and columns is called freezing. {% tabs %} {% highlight c# %} @@ -256,7 +256,7 @@ cellGrid.FrozenColumns = 4; ## Unfreeze rows and columns -The SfCellGrid provides support to unfreeze the rows and columns by setting the `FrozenRows` and `FrozenColumns` counts to 1. +The Excel-like Grid provides support to unfreeze the rows and columns by setting the `FrozenRows` and `FrozenColumns` counts to 1. {% tabs %} {% highlight c# %} @@ -271,7 +271,7 @@ cellGrid.FrozenColumns = 1; ## Resize rows and columns -By default, row resizing and column resizing will be enabled in the SfCellGrid. To disable the resizing, set the `AllowRowResize` and `AllowColumnResize` properties to false. +By default, row resizing and column resizing will be enabled in the Excel-like Grid. To disable the resizing, set the `AllowRowResize` and `AllowColumnResize` properties to false. {% tabs %} {% highlight c# %} @@ -303,7 +303,7 @@ cellGrid.AllowHiddenColumnResize = false; ### Resizing controller -Resizing controller of rows and columns can be customized and set to the `RowResizingController` and `ColumnResizingController` properties of the SfCellGrid. +Resizing controller of rows and columns can be customized and set to the `RowResizingController` and `ColumnResizingController` properties of the Excel-like Grid. Properties associated with `RowResizingController` and `ColumnResizingController` classes are: @@ -342,7 +342,7 @@ private void CellGrid_ResizingColumns(object sender, ResizingColumnsEventArgs e) ### ResizeToFit -The SfCellGrid provides support to enable the resizing of rows and columns based on the cell content. The parameters passed in the method is of type `GridRangeInfo` that mentions the ranges of rows and columns to allow resizing and `GridResizeToFitOptions` enum that provides the user with the options to control the resizing behavior. +The Excel-like Grid provides support to enable the resizing of rows and columns based on the cell content. The parameters passed in the method is of type `GridRangeInfo` that mentions the ranges of rows and columns to allow resizing and `GridResizeToFitOptions` enum that provides the user with the options to control the resizing behavior. The options in the `GridResizeToFitOptions` enum are: diff --git a/uwp/CellGrid/Selection.md b/uwp/CellGrid/Selection.md index 7ef231ac..23bbbb30 100644 --- a/uwp/CellGrid/Selection.md +++ b/uwp/CellGrid/Selection.md @@ -9,11 +9,11 @@ documentation: ug # Selection in UWP Excel-like Grid -This section explains about the Selection behavior in SfCellGrid. +This section explains about the Selection behavior in Excel-like Grid. -The SfCellGrid control provides support for selection in grid by using mouse, keyboard and touch interactions. +The Excel-like Grid control provides support for selection in grid by using mouse, keyboard and touch interactions. -By default, Selection behavior will be enabled in SfCellGrid, but if you want to disable the selection in SfCellGrid, then set the `AllowSelection` Property to be false. +By default, Selection behavior will be enabled in the control, but if you want to disable the selection in the control, then set the `AllowSelection` Property to be false. {% tabs %} {% highlight c# %} @@ -25,7 +25,7 @@ By default, Selection behavior will be enabled in SfCellGrid, but if you want to ## Accessing the Current cell -SfCellGrid allows the user to access the active cell by using the `CurrentCell` property of `SelectionController` Class. +The Excel-like Grid allows the user to access the active cell by using the `CurrentCell` property of `SelectionController` Class. {% tabs %} {% highlight c# %} @@ -37,7 +37,7 @@ var cell = cellGrid.SelectionController.CurrentCell; ## Accessing the Selected ranges -SfCellGrid allows the user to access the selected ranges list using the `SelectedRanges` property. +The Excel-like Grid allows the user to access the selected ranges list using the `SelectedRanges` property. {% tabs %} {% highlight c# %} @@ -51,7 +51,7 @@ N> To get the active range in the selected ranges list, use `ActiveRange` proper ## Adding or Clearing the Selection -SfCellGrid allows the user to add and clear the selection for the given range. +The Excel-like Grid allows the user to add and clear the selection for the given range. {% tabs %} {% highlight c# %} @@ -79,7 +79,7 @@ cellGrid.SelectionController.ClearSelection(); ## Move Current Cell -SfCellGrid allows the user to move the current cell to the mentioned cell. +The Excel-like Grid allows the user to move the current cell to the mentioned cell. {% tabs %} {% highlight c# %} @@ -94,7 +94,7 @@ cellGrid.CurrentCell.MoveCurrentCell(5, 5); ### SelectionBorderThickness -SfCellGrid allows the user to set the thickness of the border around the selected cells. +The Excel-like Grid allows the user to set the thickness of the border around the selected cells. {% tabs %} {% highlight c# %} @@ -106,7 +106,7 @@ cellGrid.SelectionBorderThickness = 5; ### SelectionBorderBrush -SfCellGrid allows the user to set the brush color of the border around the selected cells. +The Excel-like Grid allows the user to set the brush color of the border around the selected cells. {% tabs %} {% highlight c# %} @@ -118,7 +118,7 @@ cellGrid.SelectionBorderBrush = new SolidColorBrush(Colors.DarkOliveGreen); ### SelectionBrush -SfCellGrid allows the user to set the brush color for background of the selected cells. +The Excel-like Grid allows the user to set the brush color for background of the selected cells. {% tabs %} {% highlight c# %} @@ -189,7 +189,7 @@ Gets or sets the thickness of selection border. +Gets or Sets the value whether to allow the selection in the Excel-like Grid or not. +Moves to one cell up of the current cell in the Excel-like Grid. +Moves to one cell down of the current cell in the Excel-like Grid. +Moves to one cell left of the current cell in the Excel-like Grid. +Moves to one cell right of the current cell in the Excel-like Grid. +Moves to the beginning cell of the Excel-like Grid. +Moves to the last cell of the Excel-like Grid. +Moves one screen to the left in the Excel-like Grid. +Moves one screen to the right in the Excel-like Grid. +Extends the selection down in the Excel-like Grid. +Extends the selection up in the Excel-like Grid.
AllowSelection -Gets or Sets the value whether to allow the selection in the SfCellGrid or not.
ShowTouchIndicator @@ -275,22 +275,22 @@ Moves to the last cell of the current row.
UPARROW -Moves to one cell up of the current cell in the SfCellGrid.
DOWNARROW -Moves to one cell down of the current cell in the SfCellGrid.
LEFTARROW -Moves to one cell left of the current cell in the SfCellGrid.
RIGHTARROW -Moves to one cell right of the current cell in the SfCellGrid.
PAGEUP @@ -302,19 +302,19 @@ Moves to the last visible cell of the current column.
CTRL+HOME -Moves to the beginning cell of a SfCellGrid.
CTRL+END -Moves to the last cell of a SfCellGrid.
ALT+PAGE UP -Moves one screen to the left in a SfCellGrid.
ALT+PAGE DOWN -Moves one screen to the right in a SfCellGrid.
CTRL + ARROW KEYS @@ -362,20 +362,20 @@ Extends the selection from the active cell to the first cell.
SHIFT+PAGE DOWN -Extends the selection down in a SfCellGrid.
SHIFT+PAGE UP -Extends the selection up in a SfCellGrid.
## Touch Selection Attributes -SfCellGrid provides support for touch selection. +The Excel-like Grid provides support for touch selection. ### ShowTouchIndicator -By default, the touch indicator is enabled in SfCellGrid. If you want to disable the indicator, then set the `ShowTouchIndicator` to false. +By default, the touch indicator is enabled in Excel-like Grid. If you want to disable the indicator, then set the `ShowTouchIndicator` to false. {% tabs %} {% highlight c# %} diff --git a/uwp/CellGrid/Styles-and-Formatting.md b/uwp/CellGrid/Styles-and-Formatting.md index 43b3ed6d..1930ee29 100644 --- a/uwp/CellGrid/Styles-and-Formatting.md +++ b/uwp/CellGrid/Styles-and-Formatting.md @@ -9,14 +9,14 @@ documentation: ug # Styles and Formatting in UWP Excel-like Grid -This section explains about some of the `GridStyleInfo` properties which customizes the `SfCellGrid` and its inner elements(cell,row, column..) +This section explains about some of the `GridStyleInfo` properties which customizes the `Excel-like Grid` and its inner elements(cell,row, column..) ## GridStyleInfo Overview -SfCellGrid is a tabular representation of grid cells which contains data. Each cell contains unique information and can be displayed independently of other cells. +The Excel-like Grid is a tabular representation of grid cells which contains data. Each cell contains unique information and can be displayed independently of other cells. `GridStyleInfo` objects are used to store information the appearance of a grid cell. So the attributes like Font, Background, Border,Alignment, CellValue and CellType etc. are all reflected in a single `GridStyleInfo` object. -Every cell in a `SfCellGrid` may have such an object associated with it, giving the individual cell its unique appearance. It is not necessary that all cells should require fully populated `GridStyleInfo` objects stored in memory to function. +Every cell in a `Excel-like Grid` may have such an object associated with it, giving the individual cell its unique appearance. It is not necessary that all cells should require fully populated `GridStyleInfo` objects stored in memory to function. ## Cell Background @@ -76,7 +76,7 @@ cellGrid.Model.RowStyles[3].Foreground = new SolidColorBrush(Colors.Almond); ## Font -The `Font` property of the `GridStyleInfo` class specifies the font for the text displayed in the cell. In SfCellGrid, `GridFontInfo` class contains all the attributes related with font styles. +The `Font` property of the `GridStyleInfo` class specifies the font for the text displayed in the cell. In Excel-like Grid, `GridFontInfo` class contains all the attributes related with font styles. {% tabs %} {% highlight c# %} @@ -178,7 +178,7 @@ cellGrid.Model.RowStyles[3].Borders.All = new Pen(new SolidColorBrush(Colors.Gre ## Format -The formats of a cell value can be changed by using `Format` property. SfCellGrid allows you to apply different formatting types to the cell values. For more details on the different types of formatting types, please check the MSDN link over [here.](https://msdn.microsoft.com/en-us/library/26etazsy.aspx) +The formats of a cell value can be changed by using `Format` property. The Excel-like Grid allows you to apply different formatting types to the cell values. For more details on the different types of formatting types, please check the MSDN link over [here.](https://msdn.microsoft.com/en-us/library/26etazsy.aspx) {% tabs %} {% highlight c# %} @@ -193,7 +193,7 @@ cellGrid.Model[2, 2].Format = "D"; ## Text Wrap -If the cell value in the SfCellGrid does not fit in a single line, then it can be wrapped by using `TextWrapping` property and the height can be adjusted with +If the cell value in the Excel-like Grid does not fit in a single line, then it can be wrapped by using `TextWrapping` property and the height can be adjusted with `ResizeRowsToFit` method. {% tabs %} @@ -220,7 +220,7 @@ private void CellGrid_Loaded(object sender, RoutedEventArgs e) ## Text Trim -When the text exceeds the edge of the cell in SfCellGrid, it can be trimmed by using `TextTrimming` property. +When the text exceeds the edge of the cell in the Excel-like Grid, it can be trimmed by using `TextTrimming` property. {% tabs %} {% highlight c# %} @@ -237,7 +237,7 @@ T> If you want to apply the styles at runtime, you can use [QueryCellInfo](http: ## Clearing styles -To remove the `GridStyleInfo` properties along with the data in SfCellGrid, `ClearStyle` and `ClearStyles` methods are used. +To remove the `GridStyleInfo` properties along with the data in Excel-like Grid, `ClearStyle` and `ClearStyles` methods are used. {% tabs %} {% highlight c# %} diff --git a/uwp/CellGrid/Working-with-SfCellGrid.md b/uwp/CellGrid/Working-with-SfCellGrid.md index becd779f..6604c97c 100644 --- a/uwp/CellGrid/Working-with-SfCellGrid.md +++ b/uwp/CellGrid/Working-with-SfCellGrid.md @@ -12,15 +12,15 @@ documentation: ug ## Virtualization -SfCellGrid provides support for virtualization in which data will be dynamically loaded into the grid through on demand or when the user needs to view the data. -SfCellGrid does not store the cell data in `GridStyleInfo` objects or any other internal grid storage. All information is provided while populating the data through the `QueryCellInfo` event, +The Excel-like Grid provides support for virtualization in which data will be dynamically loaded into the grid through on demand or when the user needs to view the data. +Excel-like Grid does not store the cell data in `GridStyleInfo` objects or any other internal grid storage. All information is provided while populating the data through the `QueryCellInfo` event, thus increasing the performance. The `QueryCellInfo` event will be triggered for each cell when it comes into view. For more information, refer [QueryCellInfo](https://help.syncfusion.com/uwp/cellgrid/working-with-sfcellgrid#querycellinfo-event) topic. ## QueryCellInfo Event -The `QueryCellInfo` event of SfCellGrid is to populate the data at runtime.This event is used to provide `GridStyleInfo` object for a given cell. The `CellValue` property of the `GridStyleInfo` object holds the data. +The `QueryCellInfo` event of Excel-like Grid is to populate the data at runtime.This event is used to provide `GridStyleInfo` object for a given cell. The `CellValue` property of the `GridStyleInfo` object holds the data. All the changes made in this event is done in on-demand basis and not stored in any internal storage. This event allows you to customize cell contents at run-time on demand, just before the cell is drawn or programmatically accessed. @@ -72,7 +72,7 @@ please refer [here](https://help.syncfusion.com/uwp/cellgrid/working-with-sfcell ## CommitCellInfo Event `CommitCellInfo` event save the changes made in the UI, to the external data source.The event handler receives an argument of type `GridCommitCellInfoEventArgs` containing data related to this event. -This event commits the changes in value and `GridStyleInfo` object for the cell in SfCellGrid. +This event commits the changes in value and `GridStyleInfo` object for the cell in Excel-like Grid. {% tabs %} {% highlight c# %} @@ -108,7 +108,7 @@ private void Model_CommitCellInfo(object sender, Syncfusion.UI.Xaml.CellGrid.Sty ## Gridlines Enabling grid lines creates a borders around all cells within the CellGrid. Grid lines can be shown or hidden by using `ShowGridLines` property. -By default, the grid lines are visible in the SfCellGrid. If you want to hide the grid lines, then set the `ShowGridLines` property to false. +By default, the grid lines are visible in the Excel-like Grid. If you want to hide the grid lines, then set the `ShowGridLines` property to false. {% tabs %} {% highlight c# %} @@ -122,7 +122,7 @@ cellGrid.ShowGridLines = false; ### Gridline Color -User can set any color to the grid lines in SfCellGrid using the `GridLineColor` property. +User can set any color to the grid lines in the Excel-like Grid using the `GridLineColor` property. {% tabs %} {% highlight c# %} @@ -137,7 +137,7 @@ cellGrid.GridLineColor = Brushes.Green; ## Headers and Footers Headers are the cells which represents the rows/columns at top while the footers are the cells which represents the rows/columns at bottom of the CellGrid. -SfCellGrid allows the user to set multiple header rows/columns and footer rows/columns. +The Excel-like Grid allows the user to set multiple header rows/columns and footer rows/columns. {% tabs %} {% highlight c# %} @@ -163,7 +163,7 @@ cellGrid.FooterColumns = 2; ## Refreshing the Grid -Refreshing the grid means forcing the grid cells to be repainted or resetting of `GridStyleInfo` objects in the view. SfCellGrid allows you to invalidate or refresh the view either by specifying the full range or particular range. +Refreshing the grid means forcing the grid cells to be repainted or resetting of `GridStyleInfo` objects in the view. The Excel-like Grid allows you to invalidate or refresh the view either by specifying the full range or particular range. The range to be invalidated can be passed as `GridRangeInfo` object in the below methods. {% tabs %} @@ -210,7 +210,7 @@ cellGrid.InvalidateSelection(); ### Auto Scrolling -SfCellGrid scrolls rows and columns automatically when the user drags the pressed mouse to an edge of the view. By default, auto scrolling is enabled in SfCellGrid. +The Excel-like Grid scrolls rows and columns automatically when the user drags the pressed mouse to an edge of the view. By default, auto scrolling is enabled in the control. But you can disable this auto scrolling by setting the `IsEnabled` property of `GridAutoScroller` to false. {% tabs %} @@ -225,7 +225,7 @@ cellGrid.AutoScroller.IsEnabled = false; ### Programmatic Scrolling -SfCellGrid allows the user to scroll the grid into mentioned cell, by using `ScrollInView` method. +The Excel-like Grid allows the user to scroll the grid into mentioned cell, by using `ScrollInView` method. {% tabs %} {% highlight c# %} @@ -236,7 +236,7 @@ cellGrid.ScrollInView(new RowColumnIndex(5, 5)); {% endhighlight %} {% endtabs %} -The other scrolling methods in SfCellGrid are +The other scrolling methods in Excel-like Grid are `ScrollToNextPage` - Scrolls to next page in horizontal/vertical direction @@ -268,11 +268,11 @@ cellGrid.InvalidateVisual(); ### How to get the Row and Column Index of the cell from Mouse Point? -In SfCellGrid, you can get the Row and Column Index of a cell under the Mouse Point, by using PointToCellRowColumnIndex and PointToCellRowColumnIndexOutsideCells. +In Excel-like Grid, you can get the Row and Column Index of a cell under the Mouse Point, by using PointToCellRowColumnIndex and PointToCellRowColumnIndexOutsideCells. #### PointToCellRowColumnIndex: -This method allows you to get the Row and Column Index of a cell under the mouse point in SfCellGrid, regardless of its position. +This method allows you to get the Row and Column Index of a cell under the mouse point in Excel-like Grid, regardless of its position. Syntax: PointToCellRowColumnIndex (Point p); @@ -287,7 +287,7 @@ RowColumnIndex cell = grid.PointToCellRowColumnIndex(position); #### PointToCellRowColumnIndexOutsideCells: -This method allows you to get the Row and Column Index of the cell under the mouse point in SfCellGrid. It also allows you to identify whether you have clicked inside the cell or points outside the cell, that is, points over the gridlines. +This method allows you to get the Row and Column Index of the cell under the mouse point in Excel-like Grid. It also allows you to identify whether you have clicked inside the cell or points outside the cell, that is, points over the gridlines. Syntax: PointToCellRowColumnIndexOutsideCells(Point p, bool allowOutsideLines) @@ -302,9 +302,9 @@ RowColumnIndex cell = cellGrid.PointToCellRowColumnIndexOutsideCells(position, f T>You can easily identify whether you have clicked at any point inside the cell or outside the cell by setting allowOutsideLines as “False”. It returns negative values for the points that are outside the cell. -### How to remove the gridlines in SfCellGrid? +### How to remove the gridlines in Excel-like Grid? -To remove the gridlines in SfCellGrid, then set the `ShowGridLines` property to false. +To remove the gridlines in Excel-like Grid, then set the `ShowGridLines` property to false. {% tabs %} {% highlight c# %} @@ -316,9 +316,9 @@ cellGrid.ShowGridLines = false; {% endhighlight %} {% endtabs %} -### How to reset the SfCellGrid? +### How to reset the Excel-like Grid? -To reset or refresh the cells, you need to invoke `InvalidateCells` method of SfCellGrid. +To reset or refresh the cells, you need to invoke `InvalidateCells` method of the Excel-like Grid. {% tabs %} {% highlight c# %}