EarnedValueMethod

Prj.EarnedValueMethod field

The default method for calculating earned value.

public static readonly Key<EarnedValueMethodType, PrjKey> EarnedValueMethod;

Examples

Shows how to read/write Prj.EarnedValueMethod property.

var project = new Project();

project.Set(Prj.EarnedValueMethod, EarnedValueMethodType.PhysicalPercentComplete);

Console.WriteLine("Earned Value Method: " + project.Get(Prj.EarnedValueMethod));

See Also