Represents a filter in a component that supports filtering.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class FilterDescriptorRepresents a filter in a component that supports filtering.
public FilterDescriptor()Gets or sets the mode that determines whether the filter applies to any or all items in a collection.
public CollectionFilterMode CollectionFilterMode { get; set; }
| Type | Description |
|---|---|
| CollectionFilterMode | Gets or sets the mode that determines whether the filter applies to any or all items in a collection. |
Gets or sets the operator which will compare the property value with FilterValue.
public FilterOperator FilterOperator { get; set; }
| Type | Description |
|---|---|
| FilterOperator | Gets or sets the operator which will compare the property value with FilterValue. |
Gets or sets the name of the filtered property.
public string FilterProperty { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the name of the filtered property. |
Gets or sets the value to filter by.
public object FilterValue { get; set; }
| Type | Description |
|---|---|
| object | Gets or sets the value to filter by. |
Gets or sets the logic used to combine the outcome of filtering by FilterValue and SecondFilterValue.
public LogicalFilterOperator LogicalFilterOperator { get; set; }
| Type | Description |
|---|---|
| LogicalFilterOperator | Gets or sets the logic used to combine the outcome of filtering by FilterValue and SecondFilterValue. |
Gets or sets the name of the filtered property.
public string Property { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the name of the filtered property. |
Gets or sets the operator which will compare the property value with SecondFilterValue.
public FilterOperator SecondFilterOperator { get; set; }
| Type | Description |
|---|---|
| FilterOperator | Gets or sets the operator which will compare the property value with SecondFilterValue. |
Gets or sets a second value to filter by.
public object SecondFilterValue { get; set; }
| Type | Description |
|---|---|
| object | Gets or sets a second value to filter by. |
Gets or sets the property type.
public Type Type { get; set; }
| Type | Description |
|---|---|
| Type | Gets or sets the property type. |