CriticalSlackLimit

Prj.CriticalSlackLimit field

The number of days to the end of a task when Microsoft Project marks that task as a critical task.

public static readonly Key<int, PrjKey> CriticalSlackLimit;

Examples

Shows how to read/write Prj.CriticalSlackLimit property.

var project = new Project();

project.Set(Prj.CriticalSlackLimit, 2);

Console.WriteLine("Critical Slack Limit: " + project.Get(Prj.CriticalSlackLimit));

See Also