GanttUpdateEventArgs
Class
The event arguments for the OnUpdate event.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class GanttUpdateEventArgs : EventArgs
Inheritance: objectEventArgsGanttUpdateEventArgs
Inherited Members
Constructors
C#
public GanttUpdateEventArgs()
C#
public GanttUpdateEventArgs(object updatedItem, object parentItem, List<GanttDependencyDescriptor> createdDependencies, List<GanttDependencyDescriptor> updatedDependencies, List<GanttDependencyDescriptor> deletedDependencies)
Properties
Defines the newly created dependencies. See GanttDependencyDescriptor.
C#
public List<GanttDependencyDescriptor> CreatedDependencies { get; set; }
Defines the deleted dependencies. See GanttDependencyDescriptor.
C#
public List<GanttDependencyDescriptor> DeletedDependencies { get; set; }
The task model of the parent item the user updated.
C#
public object ParentItem { get; set; }
Defines the updated dependencies. See GanttDependencyDescriptor.
C#
public List<GanttDependencyDescriptor> UpdatedDependencies { get; set; }