Class GanttStateEventArgs<TItem>
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.
Inheritance
System.Object
GanttStateEventArgs<TItem>
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GanttStateEventArgs<TItem> : Object
Type Parameters
TItem
|
Constructors
GanttStateEventArgs()
Declaration
public GanttStateEventArgs()
GanttStateEventArgs(String)
Declaration
public GanttStateEventArgs(string property)
Parameters
System.String
property
|
Properties
PropertyName
Defines the changed property in the GanttState.
Declaration
public string PropertyName { get; set; }
Property Value
System.String
|
State
Defines the current state of the Gantt. Use the OnStateInit event to set default Gantt state.
Declaration
public GanttState<TItem> State { get; set; }
Property Value
GanttState<TItem>
|