officefileapi-devexpress-dot-spreadsheet-dot-sheetautofilter-dot-apply-x28-devexpress-dot-spreadsheet-dot-cellrange-x29.md
Enables the filtering functionality for the specified range of cells.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
void Apply(
CellRange range
)
Sub Apply(
range As CellRange
)
| Name | Type | Description |
|---|---|---|
| range | CellRange |
A CellRange object that is the cell range to which the filter is applied.
|
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.
You can construct the filter criterion in code to display the required information, as shown in the example below.
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" });
Dim worksheet As Worksheet = workbook.Worksheets("Regional sales")
workbook.Worksheets.ActiveWorksheet = worksheet
' Enable filtering for the specified cell range.
Dim range As CellRange = 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.
CellRange range = worksheet["B2:E23"];
worksheet.AutoFilter.Apply(range);
#endregion #ApplyFilter
CellRange range = worksheet["B2:E23"];
worksheet.AutoFilter.Apply(range);
#endregion #ApplyFilter
CellRange range = worksheet["B2:E23"];
worksheet.AutoFilter.Apply(range);
#endregion #ApplyFilter
Dim range As CellRange = worksheet("B2:E23")
worksheet.AutoFilter.Apply(range)
' #End Region ' #ApplyFilter
Dim range As CellRange = worksheet("B2:E23")
worksheet.AutoFilter.Apply(range)
' #End Region ' #ApplyFilter
Dim range As CellRange = worksheet("B2:E23")
worksheet.AutoFilter.Apply(range)
' #End Region ' #ApplyFilter
See Also