RemainingCost

Rsc.RemainingCost field

The remaining scheduled expense that will be incurred in completing the remaining scheduled work.

public static readonly Key<decimal, RscKey> RemainingCost;

Examples

Shows how to read/write Rsc.RemainingCost property.

var project = new Project();

var resource = project.Resources.Add("Resource");

resource.Set(Rsc.RemainingCost, 2);

Console.WriteLine("Remaining Cost: " + resource.Get(Rsc.RemainingCost));

See Also