ColumnCollection.ClearOutline(String, String) Method
Clears an outline for the specified columns.
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. |
Remarks
The method’s firstColumnHeading and lastColumnHeading parameters require column headings in the A1 reference style.
// Clear an outline from the column "D" to the column "G".
worksheet.Columns.ClearOutline("D", "G");
See how to group data in a worksheet.
See Also