You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Document-Processing/Excel/Spreadsheet/React/cell-range.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,13 +17,13 @@ To get start quickly with Cell Range, you can check on this video:
17
17
18
18
## Wrap text
19
19
20
-
Wrap text allows you to display large content as multiple lines in a single cell. By default, the wrap text support is enabled. Use the [`allowWrap`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#allowwrap) property to enable or disable the wrap text support in spreadsheet.
20
+
Wrap text allows you to display large content as multiple lines in a single cell. By default, the wrap text support is enabled. Use the [`allowWrap`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#allowwrap) property to enable or disable the wrap text support in spreadsheet.
21
21
22
22
Wrap text can be applied or removed to a cell or range of cells in the following ways,
23
23
24
24
* Using the `wrap` property in `cell`, you can enable or disable wrap text to a cell at initial load.
25
25
* Select or deselect wrap button from ribbon toolbar to apply or remove the wrap text to the selected range.
26
-
* Using the [`wrap`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#wrap) method, you can apply or remove the wrap text once the component is loaded.
26
+
* Using the [`wrap`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#wrap) method, you can apply or remove the wrap text once the component is loaded.
27
27
28
28
The following code example shows the wrap text functionality in spreadsheet.
29
29
@@ -53,13 +53,13 @@ The following features have some limitations in wrap text:
53
53
54
54
## Merge cells
55
55
56
-
Merge cells allows users to span two or more cells in the same row or column into a single cell. When cells with multiple values are merged, top-left most cell data will be the data for the merged cell. By default, the merge cells option is enabled. Use [`allowMerge`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#allowmerge) property to enable or disable the merge cells option in spreadsheet.
56
+
Merge cells allows users to span two or more cells in the same row or column into a single cell. When cells with multiple values are merged, top-left most cell data will be the data for the merged cell. By default, the merge cells option is enabled. Use [`allowMerge`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#allowmerge) property to enable or disable the merge cells option in spreadsheet.
57
57
58
58
You can merge the range of cells in the following ways,
59
59
60
60
* Set the `rowSpan` and `colSpan` property in `cell` to merge the number of cells at initial load.
61
61
* Select the range of cells and apply merge by selecting the desired option from ribbon toolbar.
62
-
* Use [`merge`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#merge) method to merge the range of cells, once the component is loaded.
62
+
* Use [`merge`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#merge) method to merge the range of cells, once the component is loaded.
63
63
64
64
The available merge options in spreadsheet are,
65
65
@@ -192,7 +192,7 @@ Clear feature helps you to clear the cell contents (formulas and data), formats
192
192
You can apply clear feature by using one of the following ways,
193
193
194
194
* Select the clear icon in the Ribbon toolbar under the Home Tab.
195
-
* Using the [`clear()`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#clear) method to clear the values.
195
+
* Using the [`clear()`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#clear) method to clear the values.
196
196
197
197
Clear has the following types in the spreadsheet,
198
198
@@ -205,7 +205,7 @@ Clear has the following types in the spreadsheet,
205
205
206
206
### Methods
207
207
208
-
Clear the cell contents and formats in the Spreadsheet document by using the [clear](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#clear) method. The [clear](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#clear) method has `type` and `range` as parameters. The following code example shows how to clear the cell contents and formats in the button click event.
208
+
Clear the cell contents and formats in the Spreadsheet document by using the [clear](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#clear) method. The [clear](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/index-default#clear) method has `type` and `range` as parameters. The following code example shows how to clear the cell contents and formats in the button click event.
0 commit comments