New to Telerik UI for WPFStart a free 30-day trial

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: GanttTask

Inherited Members IDateRange.StartIDateRange.EndIResourceContainer.ResourcesIHierarchical.ChildrenIStateProvider.SaveState()IStateProvider.LoadState(object)...

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 duration of the task.

C#
TimeSpan Duration { get; set; }

Gets or set the progress in percent of completion of the task.

C#
double Progress { get; set; }

Gets or set the title of the task.

C#
string Title { get; set; }