IGanttTask
Interface
Defines basic methods and properties of a gantt task.
Definition
Namespace:Telerik.Windows.Controls.GanttView
Assembly:Telerik.Windows.Controls.GanttView.dll
Syntax:
C#
public interface IGanttTask : IDateRange, IResourceContainer, IHierarchical, IStateProvider
Derived Classes:
Inherited Members
Properties
Gets or set the deadline date of the task. This property is also used for calculating the critical path.
C#
DateTime? Deadline { get; set; }
Collection with dependencies from other tasks.
C#
IEnumerable Dependencies { get; }
Gets or set the description of the task.
C#
string Description { get; set; }
Gets or set the progress in percent of completion of the task.
C#
double Progress { get; set; }