FreeSlackTimeSpan

Tsk.FreeSlackTimeSpan field

The time that a task can be delayed without delaying any successor tasks.

public static readonly Key<TimeSpan, TaskKey> FreeSlackTimeSpan;

Examples

Shows how to read Tsk.FreeSlackTimeSpan property. The property is calculated, so usually there is no need to set it explicitly.

var project = new Project();

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

Console.WriteLine("Free Slack: " + task.Get(Tsk.FreeSlackTimeSpan));

See Also