Skip to main content
A newer version of this page is available.
All docs
V18.2
Row

RangeExtensions.UnGroupRows(Range, Boolean) Method

Ungroups the grouped rows that comprise the cell range.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

public static void UnGroupRows(
    this Range range,
    bool unhideCollapsed
)

Parameters

Name Type Description
range Range

A Range object specifying a cell range that belongs to rows to be ungrouped.

unhideCollapsed Boolean

true, if the collapsed rows are displayed after ungrouping; otherwise, false.

Remarks

The UnGroupRows method is an extension method of the Range object that is called by using the instance method syntax.

To group rows, use the RangeExtensions.GroupRows 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