Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

AutoFilterColumn.ApplyFilterCriteria(FilterValue) Method

Filters data by values.

Namespace: DevExpress.Spreadsheet

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

Declaration

void ApplyFilterCriteria(
    FilterValue filters
)

Parameters

Name Type Description
filters FilterValue

A FilterValue object containing values to be used in a filter.

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 ApplyFilterCriteria(FilterValue) 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