Skip to main content
All docs
V25.1
  • Row

    ColumnCollection.UnGroup(String, String, Boolean) Method

    Ungroups the grouped columns on a worksheet.

    Namespace: DevExpress.Spreadsheet

    Assembly: DevExpress.Spreadsheet.v25.1.Core.dll

    NuGet Package: DevExpress.Spreadsheet.Core

    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