MoveRemainingStartsBack

Prj.MoveRemainingStartsBack field

Determines whether the beginning of remaining 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> MoveRemainingStartsBack;

Examples

Shows how to read/write Prj.MoveRemainingStartsBack property.

var project = new Project();

project.Set(Prj.MoveRemainingStartsBack, true);

Console.WriteLine("Move Remaining Starts Back: " + project.Get(Prj.MoveRemainingStartsBack));

See Also