CommitmentType

Tsk.CommitmentType field

Determines whether a task has an associated delivery or a dependency on an associated delivery. Reading supported for XML format only.

public static readonly Key<int, TaskKey> CommitmentType;

Examples

Shows how to read/write Tsk.CommitmentType property.

var project = new Project();

var task = project.RootTask.Children.Add("Task");

task.Set(Tsk.CommitmentType, 2);

Console.WriteLine("Commitment Type: " + task.Get(Tsk.CommitmentType));

See Also