Asn.CV
Asn.CV field
The earned value cost variance. CV is the difference between the assignment’s BCWP (budgeted cost of work performed) and ACWP (actual cost of work performed).
public static readonly Key<double, AsnKey> CV;
Examples
Shows how to read assignment’s cost values.
var project = new Project(DataDir + "ResourceAssignmentCosts.mpp");
// Print resource assignment costs
foreach (var assignment in project.ResourceAssignments)
{
Console.WriteLine(assignment.Get(Asn.Cost));
Console.WriteLine(assignment.Get(Asn.ACWP));
// CV = BCWP - ACWP
Console.WriteLine(assignment.Get(Asn.CV));
Console.WriteLine(assignment.Get(Asn.BCWP));
Console.WriteLine(assignment.Get(Asn.BCWS));
// SV = BCWP - BCWS
Console.WriteLine(assignment.Get(Asn.SV));
}
See Also
- struct Key<T,K>
- enum AsnKey
- class Asn
- namespace Aspose.Tasks
- assembly Aspose.Tasks