Class DataGridColumnFilterEventArgs<T>
Supplies information about a Filter event that is being raised.
Inherited Members
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class DataGridColumnFilterEventArgs<T> where T : notnull
Type Parameters
| Name | Description |
|---|---|
| T | The data item type. |
Constructors
DataGridColumnFilterEventArgs()
Supplies information about a Filter event that is being raised.
Declaration
public DataGridColumnFilterEventArgs()
Properties
Column
Gets the filtered RadzenDataGridColumn.
Declaration
public RadzenDataGridColumn<T>? Column { get; }
Property Value
| Type | Description |
|---|---|
| RadzenDataGridColumn<T> |
FilterOperator
Gets the new filter operator of the filtered column.
Declaration
public FilterOperator FilterOperator { get; }
Property Value
| Type | Description |
|---|---|
| FilterOperator |
FilterValue
Gets the new filter value of the filtered column.
Declaration
public object? FilterValue { get; }
Property Value
| Type | Description |
|---|---|
| object |
LogicalFilterOperator
Gets the new logical filter operator of the filtered column.
Declaration
public LogicalFilterOperator LogicalFilterOperator { get; }
Property Value
| Type | Description |
|---|---|
| LogicalFilterOperator |
SecondFilterOperator
Gets the new second filter operator of the filtered column.
Declaration
public FilterOperator SecondFilterOperator { get; }
Property Value
| Type | Description |
|---|---|
| FilterOperator |
SecondFilterValue
Gets the new second filter value of the filtered column.
Declaration
public object? SecondFilterValue { get; }
Property Value
| Type | Description |
|---|---|
| object |