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: blazor/treegrid/columns/column-spanning.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -542,7 +542,7 @@ To define a merged region, use the following properties of the MergeCellInfo cla
542
542
| RowSpan | int (optional) | The number of rows to span, starting from the anchor cell. By default set to 1. |
543
543
| ColumnSpan | int (optional) | The number of columns to span, starting from the anchor cell. By default set to 1. |
544
544
545
-
The following sample demonstrates programmatic column spanning by calling `MergeCellsAsync` with `RowIndex`, `ColumnIndex`, and `ColumnSpan` for a single merge, and by passing multiple `MergeCellInfo` objects with the same parameters in an array for batch merging.
545
+
The following sample demonstrates programmatic column spanning by calling `MergeCellsAsync` with parameters such as `RowIndex`, `ColumnIndex`, and `ColumnSpan` for a single merge, and by passing multiple `MergeCellInfo` objects with the same parameters in an array for batch merging.
546
546
547
547
{% tabs %}
548
548
{% highlight razor tabtitle="Index.razor" %}
@@ -553,7 +553,7 @@ The following sample demonstrates programmatic column spanning by calling `Merge
@@ -779,7 +779,7 @@ To identify a merged region, use the following properties of the UnmergeCellInfo
779
779
| RowIndex | int | The zero-based index of the anchor row (top-left cell of the merged region). |
780
780
| ColumnIndex | int | The zero-based index of the anchor column (top-left cell of the merged region). |
781
781
782
-
This sample demonstrates clearing merged regions in the TreeGrid by calling `UnmergeCellsAsync` with `RowIndex` and `ColumnIndex` to remove specific spans, passing multiple `UnmergeCellInfo` objects for batch unmerging, and using `UnmergeAllAsync` to reset all merged cells at once.
782
+
This sample demonstrates clearing merged regions in the TreeGrid by calling `UnmergeCellsAsync` with parameters such as `RowIndex` and `ColumnIndex` to remove specific spans, passing multiple `UnmergeCellInfo` objects for batch unmerging, and using `UnmergeAllAsync` to reset all merged cells at once.
783
783
784
784
{% tabs %}
785
785
{% highlight razor tabtitle="Index.razor" %}
@@ -795,7 +795,7 @@ This sample demonstrates clearing merged regions in the TreeGrid by calling `Unm
795
795
796
796
<SfButtonOnClick="UnMergeAllCells">UnMerge All Cells</SfButton>
Copy file name to clipboardExpand all lines: blazor/treegrid/rows/row-spanning.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -542,7 +542,7 @@ To define a merged region, use the following properties of the MergeCellInfo cla
542
542
| RowSpan | int (optional) | The number of rows to span, starting from the anchor cell. By default set to 1. |
543
543
| ColumnSpan | int (optional) | The number of columns to span, starting from the anchor cell. By default set to 1. |
544
544
545
-
The following sample demonstrates programmatic row spanning by calling `MergeCellsAsync` with `RowIndex`, `ColumnIndex`, and `RowSpan` for a single merge, and by passing multiple `MergeCellInfo` objects with the same parameters in an array for batch merging.
545
+
The following sample demonstrates programmatic row spanning by calling `MergeCellsAsync` with parameters such as `RowIndex`, `ColumnIndex`, and `RowSpan` for a single merge, and by passing multiple `MergeCellInfo` objects with the same parameters in an array for batch merging.
546
546
547
547
{% tabs %}
548
548
{% highlight razor tabtitle="Index.razor" %}
@@ -553,7 +553,7 @@ The following sample demonstrates programmatic row spanning by calling `MergeCel
@@ -779,7 +779,7 @@ To identify a merged region, use the following properties of the UnmergeCellInfo
779
779
| RowIndex | int | The zero-based index of the anchor row (top-left cell of the merged region). |
780
780
| ColumnIndex | int | The zero-based index of the anchor column (top-left cell of the merged region). |
781
781
782
-
This sample demonstrates clearing merged regions in the TreeGrid by calling `UnmergeCellsAsync` with `RowIndex` and `ColumnIndex` to remove specific spans, passing multiple `UnmergeCellInfo` objects for batch unmerging, and using `UnmergeAllAsync` to reset all merged cells at once.
782
+
This sample demonstrates clearing merged regions in the TreeGrid by calling `UnmergeCellsAsync` with parameters such as `RowIndex` and `ColumnIndex` to remove specific spans, passing multiple `UnmergeCellInfo` objects for batch unmerging, and using `UnmergeAllAsync` to reset all merged cells at once.
783
783
784
784
{% tabs %}
785
785
{% highlight razor tabtitle="Index.razor" %}
@@ -794,7 +794,7 @@ This sample demonstrates clearing merged regions in the TreeGrid by calling `Unm
794
794
795
795
<SfButtonOnClick="UnMergeAllCells">UnMerge All Cells</SfButton>
0 commit comments