Class GanttCreateEventArgs
The event arguments for the OnCreate event.
Inheritance
System.Object
GanttCreateEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GanttCreateEventArgs : EventArgs
Constructors
GanttCreateEventArgs()
Declaration
public GanttCreateEventArgs()
GanttCreateEventArgs(Object, Object, List<GanttDependencyDescriptor>)
Declaration
public GanttCreateEventArgs(object item, object parentItem, List<GanttDependencyDescriptor> dependencies)
Parameters
System.Object
item
|
System.Object
parentItem
|
System.Collections.Generic.List<GanttDependencyDescriptor>
dependencies
|
Properties
Dependencies
Defines the newly created dependencies. See GanttDependencyDescriptor.
Declaration
public List<GanttDependencyDescriptor> Dependencies { get; set; }
Property Value
System.Collections.Generic.List<GanttDependencyDescriptor>
|
Item
The task model that the user is creating.
Declaration
public object Item { get; set; }
Property Value
System.Object
|
ParentItem
Defines the parent item when inserting a child.
Declaration
public object ParentItem { get; set; }
Property Value
System.Object
|