AccrueAt

Rsc.AccrueAt field

Determines how and when resource standard and overtime costs are to be charged, or accrued, to the cost of a task.

public static readonly Key<CostAccrualType, RscKey> AccrueAt;

Examples

Shows how to read/write Rsc.AccrueAt property.

var project = new Project();

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

resource.Set(Rsc.AccrueAt, CostAccrualType.End);

Console.WriteLine("Accrue At: " + resource.Get(Rsc.AccrueAt));

See Also