Represents the dependency type of a task predecessor.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.Core (in DlhSoft.ProjectData.Core.dll)

Syntax

C#
public enum DependencyType
Visual Basic (Declaration)
Public Enumeration DependencyType

Members

Member nameDescription
FinishStart
Indicates that the current task starts when the predecessor task finishes.
StartStart
Indicates that the current task starts when the predecessor task starts.
FinishFinish
Indicates that the current task finishes when the predecessor task finishes.
StartFinish
Indicates that the current task finishes when the predecessor task starts.
None
Indicates that the current task start and finish do not depend on the predecessor task start or finish.

See Also