WorkVariance

Tsk.WorkVariance field

The difference between baseline work of a task and the currently scheduled work.

public static readonly Key<Duration, TaskKey> WorkVariance;

Examples

Shows how to read/write Tsk.WorkVariance property.

var project = new Project();

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

task.Set(Tsk.WorkVariance, project.GetDuration(1));

Console.WriteLine("Work Variance: " + task.Get(Tsk.WorkVariance));

See Also