DurationVariance

Tsk.DurationVariance field

The difference between the baseline duration of a task and the total duration (current estimate) of a task.

public static readonly Key<Duration, TaskKey> DurationVariance;

Examples

Shows how to read/write Tsk.DurationVariance property.

var project = new Project();
project.Set(Prj.WorkFormat, TimeUnitType.Hour);

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

task.Set(Tsk.DurationVariance, project.GetWork(1));

Console.WriteLine("Duration Variance: " + task.Get(Tsk.DurationVariance));

See Also