NewTasksEstimated

Prj.NewTasksEstimated field

Determines whether an estimated duration is shown by default.

public static readonly Key<NullableBool, PrjKey> NewTasksEstimated;

Examples

Shows how to read/write Prj.NewTasksEstimated property.

var project = new Project();

project.Set(Prj.NewTasksEstimated, true);

Console.WriteLine("New Tasks Estimated: " + project.Get(Prj.NewTasksEstimated));

See Also