corelibraries-devexpress-dot-mvvm-dot-gantt-0783595e.md
Lists the values used to specify the Gantt task relationships.
Namespace : DevExpress.Mvvm.Gantt
Assembly : DevExpress.Mvvm.v25.2.dll
NuGet Packages : DevExpress.Mvvm, DevExpress.Win.Navigation
public enum PredecessorLinkType
Public Enum PredecessorLinkType
| 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.
|
The following properties accept/return PredecessorLinkType values:
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