Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxGanttControlTaskPredecessorLinkType Enum

Enumerates dependency types.

#Declaration

Delphi
TdxGanttControlTaskPredecessorLinkType = (
    FF,
    FS,
    SF,
    SS
);

#Members

Name Description
FF

A Finish-To-Finish dependency. A successor task can finish only when its predecessor is finished.

FS

A Finish-To-Start dependency. A successor task can start only when its predecessor is finished.

SF

A Start-To-Finish dependency. A successor task can be finished only after the predecessor is started.

SS

A Start-To-Start dependency. A successor task can start only after its predecessor is started.

#Remarks

A dependency’s Type property references the TdxGanttControlTaskPredecessorLinkType type.

See Also