Skip to main content
All docs
V25.1
  • Row

    ColumnCollection.Unhide(String, String) Method

    Displays the hidden columns on a worksheet.

    Namespace: DevExpress.Spreadsheet

    Assembly: DevExpress.Spreadsheet.v25.1.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