Tsk.RegularWork
Tsk.RegularWork field
The total amount of non overtime work scheduled to be performed by resources.
public static readonly Key<Duration, TaskKey> RegularWork;
Examples
Shows how to read/write Tsk.RegularWork property.
var project = new Project();
project.Set(Prj.WorkFormat, TimeUnitType.Hour);
var task = project.RootTask.Children.Add("Task");
task.Set(Tsk.RegularWork, project.GetWork(1));
Console.WriteLine("Regular Work: " + task.Get(Tsk.RegularWork));
See Also
- struct Key<T,K>
- struct Duration
- enum TaskKey
- class Tsk
- namespace Aspose.Tasks
- assembly Aspose.Tasks