Click or drag to resize

EarnedValueMethodType Enumeration

Specifies the method used for calculating earned value.

Namespace:  Aspose.Tasks
Assembly:  Aspose.Tasks (in Aspose.Tasks.dll) Version: 21.10
Syntax
public enum EarnedValueMethodType
Members
  Member nameValueDescription
Undefined-1 The field was not defined in original project file.
PercentComplete0 Percent complete
PhysicalPercentComplete1 Physical percent complete
Remarks
While exporting into XML the Undefined values will be eliminated from resulting XML.
Examples
Shows how to specify the method used for calculating earned value (EarnedValueMethodType.PercentComplete).
var project = new Project(DataDir + "Project2.mpp");
// set earned value method type to 'PercentComplete'
project.Set(Prj.DefaultTaskEVMethod, EarnedValueMethodType.PercentComplete);
// work with the project...
See Also