Skip to main content
All docs
V25.1
  • Row

    ColumnCollection.Group(String, String, Boolean) Method

    Groups the specified columns on a worksheet.

    Namespace: DevExpress.Spreadsheet

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

    NuGet Package: DevExpress.Spreadsheet.Core

    Declaration

    void Group(
        string firstColumnHeading,
        string lastColumnHeading,
        bool collapse
    )

    Parameters

    Name Type Description
    firstColumnHeading String

    The heading of the first column to group.

    lastColumnHeading String

    The heading of the last column to group.

    collapse Boolean

    true, if the created group is collapsed; otherwise, false.

    Remarks

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

    // Group four columns and expand the group.
    worksheet.Columns.Group("C", "F", false);
    

    See how to group data in a worksheet.

    See Also