IgnoreResourceCalendar

Tsk.IgnoreResourceCalendar field

Determines whether the scheduling of the task considers the calendars of the resources assigned to the task.

public static readonly Key<NullableBool, TaskKey> IgnoreResourceCalendar;

Examples

Shows how to read/write Tsk.IgnoreResourceCalendar property.

var project = new Project();

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

task.Set(Tsk.IgnoreResourceCalendar, true);

Console.WriteLine("Ignore Resource Calendar: " + task.Get(Tsk.IgnoreResourceCalendar));

See Also