Class TaskConnectorChangeEventArgs<TValue>
Provides information about the TaskConnectorChanging event.
Inheritance
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class TaskConnectorChangeEventArgs<TValue> : Object
Type Parameters
Name |
---|
TValue |
Constructors
TaskConnectorChangeEventArgs()
Declaration
public TaskConnectorChangeEventArgs()
Properties
Cancel
Gets or sets a boolean value indicating whether to cancel the dependency connection change.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | If the Cancel property is set to |
IsStartPredecessor
Gets a boolean value indicating whether predecessor taskbar’s connection point is start or finish.
Declaration
public bool IsStartPredecessor { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
PredecessorData
Gets the data associated with the predecessor taskbar for which the dependency connection is changing.
Declaration
public TValue PredecessorData { get; }
Property Value
Type | Description |
---|---|
TValue | An object of the type |
SuccessorData
Gets the data associated with the successor taskbar for which the dependency connection is changing.
Declaration
public TValue SuccessorData { get; }
Property Value
Type | Description |
---|---|
TValue | An object of the type |