MoveCompletedEndsBack

Prj.MoveCompletedEndsBack field

Determines whether the end of completed portions of tasks scheduled to start after the status date but started earlier should be moved back to the status date.

public static readonly Key<NullableBool, PrjKey> MoveCompletedEndsBack;

Examples

Shows how to read/write Prj.MoveCompletedEndsBack property.

var project = new Project();

project.Set(Prj.MoveCompletedEndsBack, true);

Console.WriteLine("Move Completed Ends Back: " + project.Get(Prj.MoveCompletedEndsBack));

See Also