Skip to main content
All docs
V25.1
  • Row

    SheetAutoFilter.Apply(CellRange) Method

    Enables the filtering functionality for the specified range of cells.

    Namespace: DevExpress.Spreadsheet

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

    NuGet Package: DevExpress.Spreadsheet.Core

    Declaration

    void Apply(
        CellRange range
    )

    Parameters

    Name Type Description
    range CellRange

    A CellRange object that is the cell range to which the filter is applied.

    Remarks

    Once the filter is activated, a drop-down arrow appears on the right side of each column header. End-users can click the arrow of the required column and select the filter type they wish to apply.

    SpreadsheetControl_ApplyFilter

    You can construct the filter criterion in code to display the required information, as shown in the example below.

    Example

    View Example

    Worksheet worksheet = workbook.Worksheets["Regional sales"];
    workbook.Worksheets.ActiveWorksheet = worksheet;
    
    // Enable filtering for the specified cell range.
    CellRange range = worksheet["B2:E23"];
    worksheet.AutoFilter.Apply(range);
    
    // Filter the data in the "Product" column by an array of values.
    worksheet.AutoFilter.Columns[1].ApplyFilterCriteria(new CellValue[] { "Mozzarella di Giovanni", "Gorgonzola Telino" });
    

    The following code snippets (auto-collected from DevExpress Examples) contain references to the Apply(CellRange) method.

    Note

    The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

    See Also