IgnoreWarnings

Tsk.IgnoreWarnings field

Indicates whether to hide the schedule conflict warning indicator in Microsoft Project.

public static readonly Key<bool, TaskKey> IgnoreWarnings;

Examples

Shows how to read/write Tsk.IgnoreWarnings property.

var project = new Project();

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

task.Set(Tsk.IgnoreWarnings, true);

Console.WriteLine("Ignore Warnings: " + task.Get(Tsk.IgnoreWarnings));

See Also