Skip to main content
A newer version of this page is available. .

PredecessorLinkType Enum

Lists the values used to specify the Gantt task relationships.

Namespace: DevExpress.Mvvm.Gantt

Assembly: DevExpress.Mvvm.v20.2.dll

NuGet Packages: DevExpress.Mvvm, DevExpress.Uwp.Controls, DevExpress.WindowsDesktop.Mvvm

Declaration

public enum PredecessorLinkType

Members

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

The GanttControl can show relationships between tasks. These relationships are called task dependencies. They indicate dependency criteria based on which tasks begin and end in relation to each other. For example, the FinishToStart dependency means that the second task may not start before the first task is finished.

See Also