Class
GanttCreateEventArgs

The event arguments for the OnCreate event.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class GanttCreateEventArgs : EventArgs

Inheritance: objectEventArgsGanttCreateEventArgs

Inherited Members EventArgs.Empty

Constructors

GanttCreateEventArgs()

Declaration

cs-api-definition
public GanttCreateEventArgs()

GanttCreateEventArgs(object, object, List<GanttDependencyDescriptor>)

Declaration

cs-api-definition
public GanttCreateEventArgs(object item, object parentItem, List<GanttDependencyDescriptor> dependencies)

Parameters

item

object

parentItem

object

dependencies

List<GanttDependencyDescriptor>

Properties

Dependencies

Defines the newly created dependencies. See GanttDependencyDescriptor.

Declaration

cs-api-definition
public List<GanttDependencyDescriptor> Dependencies { get; set; }

Property Value

List<GanttDependencyDescriptor>

Item

The task model that the user is creating.

Declaration

cs-api-definition
public object Item { get; set; }

Property Value

object

ParentItem

Defines the parent item when inserting a child.

Declaration

cs-api-definition
public object ParentItem { get; set; }

Property Value

object