MoveCompletedEndsForward

Prj.MoveCompletedEndsForward field

Determines whether the end of completed portions of tasks scheduled to have been completed before the status date but begun later should be moved up to the status date.

public static readonly Key<NullableBool, PrjKey> MoveCompletedEndsForward;

Examples

Shows how to read/write Prj.MoveCompletedEndsForward property.

var project = new Project();

project.Set(Prj.MoveCompletedEndsForward, true);

Console.WriteLine("Move Completed Ends Forward: " + project.Get(Prj.MoveCompletedEndsForward));

See Also