FixedCostAccrual

Tsk.FixedCostAccrual field

Determines choices for how and when fixed costs are to be charged, or accrued, to the cost of a task.

public static readonly Key<CostAccrualType, TaskKey> FixedCostAccrual;

Examples

Shows how to read/write Tsk.FixedCostAccrual property.

var project = new Project();

var task = project.RootTask.Children.Add("Task");

task.Set(Tsk.FixedCostAccrual, CostAccrualType.Prorated);

Console.WriteLine("Fixed Cost Accrual: " + task.Get(Tsk.FixedCostAccrual));

See Also