CommitmentStart

Tsk.CommitmentStart field

The start date of a delivery. Reading supported for XML format only.

public static readonly Key<DateTime, TaskKey> CommitmentStart;

Examples

Shows how to read/write Tsk.CommitmentStart property.

var project = new Project();

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

task.Set(Tsk.CommitmentStart, new DateTime(2020, 4, 10, 8, 0, 0));

Console.WriteLine("Commitment Start: " + task.Get(Tsk.CommitmentStart));

See Also