Class GanttDependencyCreateEventArgs
The event arguments for the OnCreate event.
Inheritance
System.Object
GanttDependencyCreateEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GanttDependencyCreateEventArgs : EventArgs
Constructors
GanttDependencyCreateEventArgs()
Declaration
public GanttDependencyCreateEventArgs()
GanttDependencyCreateEventArgs(Object, Object, GanttDependencyType)
Declaration
public GanttDependencyCreateEventArgs(object predecessorId, object successorId, GanttDependencyType type)
Parameters
System.Object
predecessorId
|
System.Object
successorId
|
GanttDependencyType
type
|
Properties
PredecessorId
The predecessor task id.
Declaration
public object PredecessorId { get; set; }
Property Value
System.Object
|
SuccessorId
The successor task id.
Declaration
public object SuccessorId { get; set; }
Property Value
System.Object
|
Type
The dependency type.
Declaration
public GanttDependencyType Type { get; set; }
Property Value
GanttDependencyType
|