ColumnCollection.UnGroup(String, String, Boolean) Method
Ungroups the grouped columns on a worksheet.
Namespace: DevExpress.Spreadsheet
Assembly: DevExpress.Spreadsheet.v24.1.Core.dll
NuGet Package: DevExpress.Spreadsheet.Core
Declaration
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