ProjectDataSet.DependencyRow.LINK_TYPE Property
Specifies the type of dependency to be established between two tasks.
Namespace: [Project Web service]
Service reference: http://ServerName:32843/[Project Service Application GUID]/PSI/Project.svc
Web service reference: http://ServerName/ProjectServerName/_vti_bin/PSI/Project.asmx?wsdl
Syntax
'Declaration
Public Property LINK_TYPE As Integer
Get
Set
'Usage
Dim instance As ProjectDataSet.DependencyRow
Dim value As Integer
value = instance.LINK_TYPE
instance.LINK_TYPE = value
public int LINK_TYPE { get; set; }
Property Value
Type: System.Int32
Remarks
LINK_TYPE
Int Value |
Name |
Abbreviation |
Description |
---|---|---|---|
0 |
FinishFinish |
FF |
The task that is identified by LINK_SUCC_UID cannot finish until the task identified by LINK_PRED_UID finishes. |
1 (Default) |
FinishStart |
FS |
The task that is identified by LINK_PRED_UID must finish before the task identified by LINK_SUCC_UID can start. This is the default dependency type. |
2 |
StartFinish |
SF |
The task that is identified by LINK_PRED_UID must start before the task identified by LINK_SUCC_UID finishes. This is the most uncommon of the four dependency types. For example, in a scenario where you are setting a fence post, the successor is Pour Cement and the predecessor is Set Post. The successor (Pour Cement) must start first, however, the predecessor (Set Post) must finish before the successor (Pour Cement) finishes. |
3 |
StartStart |
SS |
The task that is identified by LINK_SUCC_UID cannot start until the task identified by LINK_PRED_UID starts. |
See Also
Reference
ProjectDataSet.DependencyRow Class