Work

Rsc.Work field

The total amount of time scheduled for a resource on a task.

public static readonly Key<Duration, RscKey> Work;

Examples

Shows how to read/write Rsc.Work property.

var project = new Project();
project.Set(Prj.WorkFormat, TimeUnitType.Day);

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

resource.Set(Rsc.Work, project.GetWork(1));

Console.WriteLine("Work: " + resource.Get(Rsc.Work));

See Also