Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents the task’s position by number (such as 1, 1.1, or 1.2.1) in the hierarchical outline structure.
Namespace: WebSvcProject
Assembly: ProjectServerServices (in ProjectServerServices.dll)
Syntax
'Declaration
Public Property TASK_OUTLINE_NUM As String
Get
Set
'Usage
Dim instance As ProjectDataSet.TaskRow
Dim value As String
value = instance.TASK_OUTLINE_NUM
instance.TASK_OUTLINE_NUM = value
public string TASK_OUTLINE_NUM { get; set; }
Property value
Type: System.String
Remarks
Read-only.The outline number is similar to a work breakdown structure (WBS) number, except that Project Server automatically sets the outline number. For example, the following table shows some fields of the TaskDataTable in a ProjectDataSet for four TaskRow items in a project named TaskTest. The task with TASK_ID=0 is the project summary task. Task t1 is a summary task for t1sub1 and t1sub2.
TASK_NAME |
TASK_ID |
TASK_OUTLINE_LEVEL |
TASK_OUTLINE_NUM |
|---|---|---|---|
TaskTest |
0 |
0 |
0 |
t1 |
1 |
1 |
1 |
t1sub1 |
2 |
2 |
1.1 |
t1sub2 |
3 |
2 |
1.2 |
t2 |
4 |
1 |
2 |