PhysicalPercentComplete

Tsk.PhysicalPercentComplete field

Percent complete value that can be be used as an alternative for calculating budgeted cost of work performed (BCWP).

public static readonly Key<int, TaskKey> PhysicalPercentComplete;

Examples

Shows how to read/write Tsk.PhysicalPercentComplete property.

var project = new Project();

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

task.Set(Tsk.PhysicalPercentComplete, 10);

Console.WriteLine("Physical Percent Complete: " + task.Get(Tsk.PhysicalPercentComplete));

See Also