Class FilterDescriptor
Represents a filter in a component that supports filtering.
Inherited Members
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class FilterDescriptor
Constructors
FilterDescriptor()
Represents a filter in a component that supports filtering.
Declaration
public FilterDescriptor()
Properties
FilterOperator
Gets or sets the operator which will compare the property value with FilterValue.
Declaration
public FilterOperator FilterOperator { get; set; }
Property Value
Type | Description |
---|---|
FilterOperator | The filter operator. |
FilterProperty
Gets or sets the name of the filtered property.
Declaration
public string FilterProperty { get; set; }
Property Value
Type | Description |
---|---|
string | The property. |
FilterValue
Gets or sets the value to filter by.
Declaration
public object FilterValue { get; set; }
Property Value
Type | Description |
---|---|
object | The filter value. |
LogicalFilterOperator
Gets or sets the logic used to combine the outcome of filtering by FilterValue and SecondFilterValue.
Declaration
public LogicalFilterOperator LogicalFilterOperator { get; set; }
Property Value
Type | Description |
---|---|
LogicalFilterOperator | The logical filter operator. |
Property
Gets or sets the name of the filtered property.
Declaration
public string Property { get; set; }
Property Value
Type | Description |
---|---|
string | The property. |
SecondFilterOperator
Gets or sets the operator which will compare the property value with SecondFilterValue.
Declaration
public FilterOperator SecondFilterOperator { get; set; }
Property Value
Type | Description |
---|---|
FilterOperator | The second filter operator. |
SecondFilterValue
Gets or sets a second value to filter by.
Declaration
public object SecondFilterValue { get; set; }
Property Value
Type | Description |
---|---|
object | The second filter value. |
Type
Gets or sets the property type.
Declaration
[JsonIgnore]
public Type Type { get; set; }
Property Value
Type | Description |
---|---|
Type | The property type. |