Interface IGanttTask
Defines basic methods and properties of a gantt task.
Inherited Members
Namespace: Telerik.Windows.Controls.GanttView
Assembly: Telerik.Windows.Controls.GanttView.dll
Syntax
public interface IGanttTask : IDateRange, IResourceContainer, IHierarchical, IStateProvider
Properties
Deadline
Gets or set the deadline date of the task. This property is also used for calculating the critical path.
Declaration
Nullable<DateTime> Deadline { get; set; }
Property Value
System.Nullable<System.DateTime>
|
Dependencies
Collection with dependencies from other tasks.
Declaration
IEnumerable Dependencies { get; }
Property Value
System.Collections.IEnumerable
|
Description
Gets or set the description of the task.
Declaration
string Description { get; set; }
Property Value
System.String
|
Duration
Gets or set the duration of the task.
Declaration
TimeSpan Duration { get; set; }
Property Value
System.TimeSpan
|
Progress
Gets or set the progress in percent of completion of the task.
Declaration
double Progress { get; set; }
Property Value
System.Double
|
Title
Gets or set the title of the task.
Declaration
string Title { get; set; }
Property Value
System.String
|