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

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

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

C#
public class GanttStateEventArgs<TItem>

Inheritance: objectGanttStateEventArgs<TItem>

Constructors

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

Properties

Defines the changed property in the GanttState.

C#
public string PropertyName { get; set; }

Defines the current state of the Gantt. Use the OnStateInit event to set default Gantt state.

C#
public GanttState<TItem> State { get; set; }