SplitsInProgressTasks

Prj.SplitsInProgressTasks field

Determines whether in-progress tasks can be split.

public static readonly Key<NullableBool, PrjKey> SplitsInProgressTasks;

Examples

Shows how to read/write Prj.SplitsInProgressTasks property.

var project = new Project();

project.Set(Prj.SplitsInProgressTasks, true);

Console.WriteLine("Splits In Progress Tasks: " + project.Get(Prj.SplitsInProgressTasks));

See Also