Background Image

Knowledge base articles about
duration

Search DlhSoft Team's blog for duration

If you need to define a custom column displaying and allowing the end user to edit a task duration in days in Gantt Chart Library for WPF or Project Management Library for WPF you can do it by using the following code (C#), applicable within our Custom Data Binding sample application: // Task class public class CustomTaskItem : INotifyPropertyChanged { …

If you need to define a custom column displaying and allowing the end user to edit a task duration in days in Gantt Chart Library for Windows Forms you can do it by using the following code, applicable to standard tasks within our Get Started sample application: // Task class public class MyTask : INotifyPropertyChanged { [...] …

Is there a maximum time interval duration value (used for example, as the maximum task duration) within Gantt Chart Library for WPF or Project Management Library for WPF? Yes, to improve performance, such a maximum duration values is defined within the Schedule object instances. By default it is set to about 2 years (730.5 days), but it can be modified by inheriting from the Sche…

At initialization time, task items are defined using these main timing related properties: Start: date and time value to start work; Finish: date and time value to finish work; if you need to compute it based on the Start value and an effort value, use the GetFinish method provided by the component instance: item.Finish = component.GetFinish(item.Start, effort); CompletedFinish: date and time val…