Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Row.IsFiltered Property

Gets a value indicting whether the current row belongs to a table or cell range to which filtering is applied.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

bool IsFiltered { get; }

#Property Value

Type Description
Boolean

true, if the current row belongs to the filtered range; otherwise, false.

#Remarks

The IsFiltered property returns false, if a row belongs to a table or cell range for which filtering is activated, but no filter criteria are specified.

Use the IsFiltered and Row.Visible properties to determine whether a row meets the filter criteria. If so, both these properties return true. Before checking a row state, call the AutoFilterBase.ReApply method to make sure that your filter results are up-to-date.

See Also