Back to Devexpress

GanttView.BeginPredecessorLinkEdit Event

wpf-devexpress-dot-xpf-dot-gantt-dot-ganttview-f0fad235.md

latest5.7 KB
Original Source

GanttView.BeginPredecessorLinkEdit Event

Occurs when an end user starts editing or creating a task connector (on MouseDown ) on the Gantt area. This is a routed event.

Namespace : DevExpress.Xpf.Gantt

Assembly : DevExpress.Xpf.Gantt.v25.2.dll

NuGet Package : DevExpress.Wpf.Gantt

Declaration

csharp
public event EventHandler<BeginPredecessorLinkEditEventArgs> BeginPredecessorLinkEdit
vb
Public Event BeginPredecessorLinkEdit As EventHandler(Of BeginPredecessorLinkEditEventArgs)

Event Data

The BeginPredecessorLinkEdit event's data class is BeginPredecessorLinkEditEventArgs. The following properties provide information specific to this event:

PropertyDescription
HandledGets or sets a value that indicates the present state of the event handling for a routed event as it travels the route. Inherited from RoutedEventArgs.
LinkTypeGets the type of the edited link.
OriginalSourceGets the original reporting source as determined by pure hit testing, before any possible Source adjustment by a parent class. Inherited from RoutedEventArgs.
PredecessorGets the predecessor of the edited link (connector).
PredecessorLinkGets an edited predecessor link (connector).
RoutedEventGets or sets the RoutedEvent associated with this RoutedEventArgs instance. Inherited from RoutedEventArgs.
SourceGets or sets a reference to the object that raised the event. Inherited from RoutedEventArgs.
SuccessorGets the successor of the edited link (connector).

The event data class exposes the following methods:

MethodDescription
InvokeEventHandler(Delegate, Object)When overridden in a derived class, provides a way to invoke event handlers in a type-specific way, which can increase efficiency over the base implementation. Inherited from RoutedEventArgs.
OnSetSource(Object)When overridden in a derived class, provides a notification callback entry point whenever the value of the Source property of an instance changes. Inherited from RoutedEventArgs.

Remarks

The event arguments’ BeginPredecessorLinkEditEventArgs.Predecessor property returns a predecessor of the edited link (connector). To get the successor, use the BeginPredecessorLinkEditEventArgs.Successor property.

Use the BeginPredecessorLinkEditEventArgs.LinkType property to get the edited link type. The edited link’s data object can be accessed with the BeginPredecessorLinkEditEventArgs.PredecessorLink property.

When an end user creates a new connector, the following event arguments’ properties return null :

See Also

GanttView Class

GanttView Members

DevExpress.Xpf.Gantt Namespace