Skip to main content

GanttConnector.PredecessorLinkType Property

Gets or sets the predecessor link type. This is a dependency property.

Namespace: DevExpress.Xpf.Gantt

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

NuGet Package: DevExpress.Wpf.Gantt

Declaration

public PredecessorLinkType PredecessorLinkType { get; set; }

Property Value

Type Description
PredecessorLinkType

A predecessor link type.

Available values:

Name Description
FinishToStart

The successor task may not start before the predecessor task is finished.

FinishToFinish

The successor task may not finish before the predecessor task is finished.

StartToStart

The successor task may not start before the predecessor task is started.

StartToFinish

The successor task may not finish before the predecessor task is started.

Remarks

Use the PredecessorLinkType property to get the link type or the processed task connector.

See Also