FinishSlackTimeSpan

Tsk.FinishSlackTimeSpan field

The duration between the Early Finish and Late Finish dates.

public static readonly Key<TimeSpan, TaskKey> FinishSlackTimeSpan;

Examples

Shows how to read Tsk.FinishSlackTimeSpan 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("Finish Slack: " + task.Get(Tsk.FinishSlackTimeSpan));

See Also