The event arguments for the OnCreate event.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class GanttDependencyCreateEventArgs : EventArgs
Inheritance: objectEventArgsGanttDependencyCreateEventArgs
Inherited Members
Constructors
C#
public GanttDependencyCreateEventArgs()
C#
public GanttDependencyCreateEventArgs(object predecessorId, object successorId, GanttDependencyType type)
Properties
The predecessor task id.
C#
public object PredecessorId { get; set; }
The successor task id.
C#
public object SuccessorId { get; set; }
The dependency type.
C#
public GanttDependencyType Type { get; set; }