Class GanttUpdateEventArgs
The event arguments for the OnUpdate event.
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GanttUpdateEventArgs : EventArgs
Constructors
GanttUpdateEventArgs()
Declaration
public GanttUpdateEventArgs()
GanttUpdateEventArgs(Object, Object, List<GanttDependencyDescriptor>, List<GanttDependencyDescriptor>, List<GanttDependencyDescriptor>)
Declaration
public GanttUpdateEventArgs(object updatedItem, object parentItem, List<GanttDependencyDescriptor> createdDependencies, List<GanttDependencyDescriptor> updatedDependencies, List<GanttDependencyDescriptor> deletedDependencies)
Parameters
System.Object
updatedItem
|
System.Object
parentItem
|
System.Collections.Generic.List<GanttDependencyDescriptor>
createdDependencies
|
System.Collections.Generic.List<GanttDependencyDescriptor>
updatedDependencies
|
System.Collections.Generic.List<GanttDependencyDescriptor>
deletedDependencies
|
Properties
CreatedDependencies
Defines the newly created dependencies. See GanttDependencyDescriptor.
Declaration
public List<GanttDependencyDescriptor> CreatedDependencies { get; set; }
Property Value
System.Collections.Generic.List<GanttDependencyDescriptor>
|
DeletedDependencies
Defines the deleted dependencies. See GanttDependencyDescriptor.
Declaration
public List<GanttDependencyDescriptor> DeletedDependencies { get; set; }
Property Value
System.Collections.Generic.List<GanttDependencyDescriptor>
|
Item
The task model that the user updated.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
ParentItem
The task model of the parent item the user updated.
Declaration
public object ParentItem { get; set; }
Property Value
System.Object
|
UpdatedDependencies
Defines the updated dependencies. See GanttDependencyDescriptor.
Declaration
public List<GanttDependencyDescriptor> UpdatedDependencies { get; set; }
Property Value
System.Collections.Generic.List<GanttDependencyDescriptor>
|