Table of Contents

Class FilterDescription

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Describes a filter operation applied to TableView items.

public class FilterDescription
Inheritance
object
FilterDescription

Constructors

FilterDescription(string?, Predicate<object?>)

Initializes a new instance of the FilterDescription class.

public FilterDescription(string? propertyName, Predicate<object?> predicate)

Parameters

propertyName string

The name of the property to filter by.

predicate Predicate<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