Class DataGridLoadColumnFilterDataEventArgs<T>
Supplies information about a LoadColumnFilterData event that is being raised.
Inheritance
System.Object
DataGridLoadColumnFilterDataEventArgs<T>
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class DataGridLoadColumnFilterDataEventArgs<T> : object
Type Parameters
Name | Description |
---|---|
T |
Properties
Column
Gets the column.
Declaration
public RadzenDataGridColumn<T> Column { get; }
Property Value
Type | Description |
---|---|
RadzenDataGridColumn<T> | The column. |
Count
Gets or sets the total data count.
Declaration
public int Count { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The total data count. |
Data
Gets or sets the data.
Declaration
public IEnumerable Data { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable | The data. |
Filter
Gets the filter expression as a string.
Declaration
public string Filter { get; }
Property Value
Type | Description |
---|---|
System.String | The filter. |
Skip
Gets how many items to skip. Related to paging and the current page. Usually used with the
Declaration
public int? Skip { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Top
Gets how many items to take. Related to paging and the current page size. Usually used with the
Declaration
public int? Top { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | The top. |