Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ColumnCollection.Unhide(String, String) Method

Displays the hidden columns on a worksheet.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

void Unhide(
    string firstColumnHeading,
    string lastColumnHeading
)

#Parameters

Name Type Description
firstColumnHeading String

The index of the first column to unhide.

lastColumnHeading String

The index of the last column to unhide.

#Remarks

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

// Unhide columns from C to F.
worksheet.Columns.Unhide("C", "F");

Set the Column.Visible property to true to display an individual column on a worksheet.

See how to hide rows and columns.

See Also