Back to Devexpress

ColumnCollection.ClearOutline(String, String) Method

officefileapi-devexpress-dot-spreadsheet-dot-columncollection-dot-clearoutline-x28-system-dot-string-system-dot-string-x29.md

latest2.0 KB
Original Source

ColumnCollection.ClearOutline(String, String) Method

Clears an outline for the specified columns.

Namespace : DevExpress.Spreadsheet

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

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
void ClearOutline(
    string firstColumnHeading,
    string lastColumnHeading
)
vb
Sub ClearOutline(
    firstColumnHeading As String,
    lastColumnHeading As String
)

Parameters

NameTypeDescription
firstColumnHeadingString

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.

csharp
// Clear an outline from the column "D" to the column "G".
worksheet.Columns.ClearOutline("D", "G");
vb
' 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

ColumnCollection Interface

ColumnCollection Members

DevExpress.Spreadsheet Namespace