Interface
IGanttTask

Defines basic methods and properties of a gantt task.

Definition

Namespace:Telerik.Windows.Controls.GanttView

Assembly:Telerik.Windows.Controls.GanttView.dll

Syntax:

cs-api-definition
public interface IGanttTask : IDateRange, IResourceContainer, IHierarchical, IStateProvider

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

Properties

Deadline

Gets or set the deadline date of the task. This property is also used for calculating the critical path.

Declaration

cs-api-definition
DateTime? Deadline { get; set; }

Property Value

DateTime?

Dependencies

Collection with dependencies from other tasks.

Declaration

cs-api-definition
IEnumerable Dependencies { get; }

Property Value

IEnumerable

Description

Gets or set the description of the task.

Declaration

cs-api-definition
string Description { get; set; }

Property Value

string

Duration

Gets or set the duration of the task.

Declaration

cs-api-definition
TimeSpan Duration { get; set; }

Property Value

TimeSpan

Progress

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

Declaration

cs-api-definition
double Progress { get; set; }

Property Value

double

Title

Gets or set the title of the task.

Declaration

cs-api-definition
string Title { get; set; }

Property Value

string