New to Telerik UI for BlazorStart a free 30-day trial

The class that describes the event arguments of the OnStateChanged event of the grid. Used to track changes made by user interaction such as grouping, sorting, filtering, column resizing, etc.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

C#
public class GridStateEventArgs<TItem> : EventArgs

Inheritance: objectEventArgsGridStateEventArgs<TItem>

Inherited Members EventArgs.Empty

Constructors

C#
public GridStateEventArgs()
C#
public GridStateEventArgs(string property)
Parameters:propertystring

Properties

Defines the current state of the Grid. Use the OnStateInit event to set the default (initial) Grid state.

C#
public GridState<TItem> GridState { get; set; }

Defines the changed property in the Grid State in the OnStateChanged event.

C#
public string PropertyName { get; set; }