Class FilterDescription
Describes a filter operation applied to TableView items.
public class FilterDescription
- Inheritance
-
objectFilterDescription
Constructors
FilterDescription(string?, Predicate<object?>)
Initializes a new instance of the FilterDescription class.
public FilterDescription(string? propertyName, Predicate<object?> predicate)
Parameters
propertyNamestringThe name of the property to filter by.
predicatePredicate<object>The predicate to apply for filtering.
Properties
Predicate
Gets the predicate to apply for filtering.
public Predicate<object?> Predicate { get; }
Property Value
- Predicate<object>
PropertyName
Gets the name of the property to filter by.
public string? PropertyName { get; }
Property Value
- string