WorkUnit Class |
Namespace: Aspose.Tasks
The WorkUnit type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | WorkUnit |
Initializes a new instance of the WorkUnit class.
Creates new WorkUnit object with the specified From and To dates.
|
Name | Description | |
---|---|---|
![]() ![]() | From |
Gets or sets the From date.
|
![]() ![]() | To |
Gets or sets the To date.
|
![]() ![]() | WorkingHours |
Gets or sets the duration of working hours.
|
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Object.) |
var project = new Project(DataDir + "Project1.mpp"); var calendar = project.Calendars.GetByUid(1); // get working hours for specific date var workUnit = calendar.GetWorkingHours(new DateTime(2020, 4, 8, 8, 0, 0), new DateTime(2020, 4, 9, 17, 0, 0)); Console.WriteLine("From: " + workUnit.From); Console.WriteLine("To: " + workUnit.To); Console.WriteLine("Working hours: " + workUnit.WorkingHours);