RegularWork

Rsc.RegularWork field

The total amount of non overtime work scheduled to be performed by resource.

public static readonly Key<Duration, RscKey> RegularWork;

Examples

Shows how to read/write Rsc.RegularWork property.

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

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

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

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

See Also