Skip to content

Commit c5f4fa7

Browse files
965862: corrected casing and grammatical errors in documentation
1 parent 3b11344 commit c5f4fa7

File tree

2 files changed

+29
-29
lines changed

2 files changed

+29
-29
lines changed

blazor/spreadsheet/contextmenu.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
---
22
layout: post
3-
title: Context menu in Blazor Spreadsheet component | Syncfusion
4-
description: Check out and learn here about the context menu functionality in the Syncfusion Blazor Spreadsheet component and more.
3+
title: Context Menu in Blazor Spreadsheet component | Syncfusion
4+
description: Checkout and learn here about the context menu functionality in the Syncfusion Blazor Spreadsheet component and more.
55
platform: Blazor
66
control: Spreadsheet
77
documentation: ug
88
---
99

10-
# Context menu in Blazor Spreadsheet component
10+
# Context Menu in Blazor Spreadsheet component
1111

12-
Context menu is used to improve user interaction with Spreadsheet using the popup menu. It will open when right-clicking on Cell/Column header/Row header/Sheet tabs in the Spreadsheet. The [EnableContextMenu](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_EnableContextMenu) property can be used to enable/disable context menu.
12+
The context menu is used to improve user interaction with the Spreadsheet component using the built-in popup menu. It opens when right-clicking on a cell, column header, row header, or sheet tab in the Spreadsheet. The [EnableContextMenu](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_EnableContextMenu) property can be used to enable/disable the context menu.
1313

14-
> The default value for the `EnableContextMenu` property is `true`.
14+
> The default value for the `EnableContextMenu` property is **true**.
1515
1616
## Cell context menu options
1717

18-
Please find the table below for default context menu options and their actions.
18+
Please find the table below for the default context menu options and their actions.
1919

20-
| Context menu options | Action |
20+
| Options | Action |
2121
| -- | -- |
2222
| Cut | Cut the selected cells data to the clipboard. The data can be pasted into a different cell location. |
2323
| Copy | Copy the selected cells data to the clipboard for pasting elsewhere. |
2424
| Paste | Paste the data from clipboard to Spreadsheet. |
2525
| Hyperlink | Create a link in the Spreadsheet to navigate to web links or cell reference within the sheet or other sheets in the Spreadsheet. |
2626
| Sort | Perform sorting to the selected range of cells by ascending or descending. |
2727
| Clear Contents | Remove the selected cells data. |
28-
| Filter | Perform filtering to the selected cells based on an active cell’s value. |
28+
| Filter | Perform filtering to the selected cells based on an active cells value. |
2929

3030
![UI showing context menu options for cell](./images/cell-contextmenu.png)
3131

32-
## Row header / Column header context menu options
32+
## Row and column header context menu options
3333

34-
Please find the table below for default context menu options and their actions.
34+
Please find the table below for the default context menu options and their actions.
3535

36-
| Context menu options | Action |
36+
| Options | Action |
3737
| -- | -- |
3838
| Cut | Cut the selected row/column header data to the clipboard. The data can be pasted into a different cell location. |
3939
| Copy | Copy the selected row/column header data to the clipboard for pasting elsewhere. |
@@ -44,19 +44,19 @@ Please find the table below for default context menu options and their actions.
4444

4545
![UI showing context menu options for column header](./images/column-header-contextmenu.png)
4646

47-
## Sheet tabs context menu options
47+
## Sheet tab context menu options
4848

49-
Please find the table below for default context menu options and their actions.
49+
Please find the table below for the default context menu options and their actions.
5050

51-
| Context menu options | Action |
51+
| Options | Action |
5252
| -- | -- |
5353
| Insert | Insert a new worksheet after the existing worksheet in the Spreadsheet. |
5454
| Delete | Delete the selected worksheet from the Spreadsheet. |
5555
| Duplicate | Create a copy of the selected worksheet in the Spreadsheet. |
5656
| Rename | Rename the selected worksheet. |
57-
| Protect Sheet / Unprotect Sheet | Protect Sheet prevents unwanted changes from others by limiting their ability to edit. Unprotect Sheet removes these restrictions. |
57+
| Protect Sheet / Unprotect Sheet | Protect sheet prevents unwanted changes from others by limiting their ability to edit. Unprotect sheet removes these restrictions. |
5858
| Move Right | Move the selected worksheet to the right of the next sheet. |
5959
| Move Left | Move the selected worksheet to the left of the previous sheet. |
6060
| Hide | Hide the selected worksheet. |
6161

62-
![UI showing context menu options for sheet tabs](./images/sheet-tab-contextmenu.png)
62+
![UI showing context menu options for sheet tab](./images/sheet-tab-contextmenu.png)

blazor/spreadsheet/editing.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
---
22
layout: post
33
title: Cell Editing in Blazor Spreadsheet component | Syncfusion
4-
description: Check out and learn here about the cell editing features in the Syncfusion Blazor Spreadsheet component and more.
4+
description: Checkout and learn here about the cell editing features in the Syncfusion Blazor Spreadsheet component and more.
55
platform: Blazor
66
control: Spreadsheet
77
documentation: ug
88
---
99

1010
# Editing in Blazor Spreadsheet component
1111

12-
The contents of a cell can be edited directly in the cell or by typing in the formula bar. By default, the editing feature is enabled in the Spreadsheet. Use the [AllowEditing](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_AllowEditing) property to enable or disable the editing feature.
12+
The contents of a cell can be edited directly within the cell or by typing in the formula bar. By default, the editing feature is enabled in the Spreadsheet. Use the [AllowEditing](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_AllowEditing) property to enable or disable the editing feature.
1313

1414
## Edit cell
1515

16-
Editing can be started by one of the following ways,
16+
Editing can be started in one of the following ways,
1717

18-
* Double click a cell to start the edit mode.
19-
* Press `F2` key to edit the active cell.
20-
* Use formula bar to perform editing.
21-
* Use `BACKSPACE` or `SPACE` key to clear the cell content and start the edit mode.
18+
* Double-click a cell to start edit mode.
19+
* Press the `F2` key to edit the active cell.
20+
* Use the formula bar to perform editing.
21+
* Press `BACKSPACE` or `SPACE` key to clear the cell content and start edit mode.
2222

2323
## Save cell
2424

25-
If the cell is in editable state, the edited cell can be saved by one of the following ways,
25+
If the cell is in an editable state, the edited cell can be saved in one of the following ways,
2626

27-
* Perform mouse click on any other cell rather than the current editing cell.
27+
* Click any other cell except the one currently being edited.
2828

29-
* Press `Enter` or `Tab` keys to save the edited cell content.
29+
* Press the `Enter` or `Tab` key to save the edited cell.
3030

3131
## Cancel editing
3232

33-
To cancel the editing without saving the changes, press the `ESCAPE` key. This will remove the editable state and update the unchanged cell content.
33+
To cancel editing without saving changes, press the `ESCAPE` key. This exits the editable state and restores the original cell content.
3434

35-
The following animation illustrates the basic cell editing operations in the Spreadsheet component including double-clicking a cell to enter edit mode, editing cell values directly, saving edits by pressing Enter, and canceling edits with the Escape key.
35+
The following animation illustrates basic cell editing operations in the Spreadsheet component, including double-clicking a cell to enter edit mode, editing values directly, saving changes by pressing `ENTER` key, and canceling edits with the `ESCAPE` key.
3636

37-
![UI showing cell editing Spreadsheet](./images/cell-editing.gif)
37+
![UI showing cell editing](./images/cell-editing.gif)
3838

3939

0 commit comments

Comments
 (0)