Skip to main content
A newer version of this page is available.
All docs
V18.2
Row

SheetAutoFilter.Apply(Range) Method

Enables the filtering functionality for the specified range of cells.

Namespace: DevExpress.Spreadsheet

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

Declaration

void Apply(
    Range range
)

Parameters

Name Type Description
range Range

A Range 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

This example demonstrates how to activate the filtering functionality for a range of cells using the SheetAutoFilter.Apply method and filter data in the specified column by an array of values.

' Enable filtering for the specified cell range.
Dim range As 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(Range) 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