Table of Contents

Class FilterDescriptor

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Represents a filter in a component that supports filtering.

public class FilterDescriptor
Inheritance
FilterDescriptor
Inherited Members

Constructors

FilterDescriptor()

public FilterDescriptor()

Properties

FilterOperator

Gets or sets the operator which will compare the property value with FilterValue.

public FilterOperator FilterOperator { get; set; }

Property Value

FilterOperator

The filter operator.

FilterValue

Gets or sets the value to filter by.

public object FilterValue { get; set; }

Property Value

object

The filter value.

LogicalFilterOperator

Gets or sets the logic used to combine the outcome of filtering by FilterValue and SecondFilterValue.

public LogicalFilterOperator LogicalFilterOperator { get; set; }

Property Value

LogicalFilterOperator

The logical filter operator.

Property

Gets or sets the name of the filtered property.

public string Property { get; set; }

Property Value

string

The property.

SecondFilterOperator

Gets or sets the operator which will compare the property value with SecondFilterValue.

public FilterOperator SecondFilterOperator { get; set; }

Property Value

FilterOperator

The second filter operator.

SecondFilterValue

Gets or sets a second value to filter by.

public object SecondFilterValue { get; set; }

Property Value

object

The second filter value.