MoveRemainingStartsForward

Prj.MoveRemainingStartsForward field

Determines whether the beginning of remaining portions of tasks scheduled to have begun later should be moved up to the status date.

public static readonly Key<NullableBool, PrjKey> MoveRemainingStartsForward;

Examples

Shows how to read/write Prj.MoveRemainingStartsForward property.

var project = new Project();

project.Set(Prj.MoveRemainingStartsForward, true);

Console.WriteLine("Move Remaining Starts Forward: " + project.Get(Prj.MoveRemainingStartsForward));

See Also