Skip to main content
Row

ColumnCollection.ClearOutline(String, String) Method

Clears an outline for the specified columns.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

void ClearOutline(
    string firstColumnHeading,
    string lastColumnHeading
)

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