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)
Declaration
public GanttCreateEventArgs(object item, object parentItem)
Parameters
System.Object
item
|
System.Object
parentItem
|
Properties
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
|