Skip to main content
All docs
V26.1
  • PredecessorLinkType Enum

    Lists the values used to specify the Gantt task relationships.

    Namespace: DevExpress.Mvvm.Gantt

    Assembly: DevExpress.Mvvm.v26.1.dll

    NuGet Packages: DevExpress.Mvvm, DevExpress.Win.Navigation

    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