RangeExtensions.GroupRows(CellRange, Boolean) Method
In This Article
Groups rows that comprise the cell range.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.2.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
range | Cell |
A Cell |
collapse | Boolean | true, if the created group is collapsed; otherwise, false. |
#Remarks
The GroupRows method is an extension method of the CellRange object that is called by using the instance method syntax.
To ungroup rows, use the RangeExtensions.UnGroupRows method.
Another way to group and ungroup rows in the worksheet is to use the RowCollection.Group and RowCollection.UnGroup methods (see the How to: Outline Data Manually document).
See Also