The PrjTaskDependencyType enumeration is used to select link type between tasks.
It is used by the IPrjTaskDependency.Type property.
Link types between tasks:
start-end. Default. The B task start depends on the A task end:
start-start. The B task start depends on the A task start and is executed simultaneously:
end-end. The B task end depends on the A task end and is executed simultaneously:
start-end. The B task end depends on the A task start:
Value | Brief description |
0 | FinishToStart. The end-start link type. |
1 | StartToStart. The start-start link type. |
2 | FinishToFinish. The end-end link type. |
3 | StartToFinish. The start-end link type. |
See also: