Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

ColumnCollection.UnGroup(String, String, Boolean) Method

Ungroups the grouped columns on a worksheet.

Namespace: DevExpress.Spreadsheet

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

Declaration

void UnGroup(
    string firstColumnHeading,
    string lastColumnHeading,
    bool unhideCollapsed
)

Parameters

Name Type Description
firstColumnHeading String

The heading of the first column to ungroup.

lastColumnHeading String

The heading of the last column to ungroup.

unhideCollapsed Boolean

true, to show the collapsed columns after the ungroup operation; otherwise, false.

Remarks

The method’s firstColumnHeading and lastColumnHeading parameters require column headings in the A1 reference style.

// Ungroup columns from the column "D" to the column "G".
worksheet.Columns.UnGroup("D", "G", false);

See how to group data in a worksheet.

See Also