EarnedValueMethod

Tsk.EarnedValueMethod field

Determines whether the % Complete or Physical % Complete field should be used to calculate budgeted cost of work performed (BCWP).

public static readonly Key<EarnedValueMethodType, TaskKey> EarnedValueMethod;

Examples

Shows how to read/write Tsk.EarnedValueMethod property.

var project = new Project();

var task = project.RootTask.Children.Add("Task");

task.Set(Tsk.EarnedValueMethod, EarnedValueMethodType.PercentComplete);

Console.WriteLine("Earned Value Method: " + task.Get(Tsk.EarnedValueMethod));

See Also