Asn.ACWP
Asn.ACWP field
The actual cost of a work performed on an assignment to-date.
public static readonly Key<double, AsnKey> ACWP;
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