Interface IGanttTask
Represents a interface for gantt task.
Namespace: Syncfusion.UI.Xaml.Gantt
Assembly: Syncfusion.SfGantt.UWP.dll
Syntax
public interface IGanttTask : INotifyPropertyChanged
Properties
Children
Gets or sets the children.
Declaration
IList<TaskDetail> Children { get; set; }
Property Value
Type |
---|
System.Collections.Generic.IList<TaskDetail> |
Duration
Gets or sets the duration.
Declaration
double Duration { get; set; }
Property Value
Type |
---|
System.Double |
FinishDate
Gets or sets the finish date.
Declaration
DateTime FinishDate { get; set; }
Property Value
Type |
---|
System.DateTime |
ID
Gets or sets the task id.
Declaration
string ID { get; set; }
Property Value
Type |
---|
System.String |
Name
Gets or sets the name of the task.
Declaration
string Name { get; set; }
Property Value
Type |
---|
System.String |
Predecessors
Gets or sets the predecessors.
Declaration
IList<TaskRelationship> Predecessors { get; set; }
Property Value
Type |
---|
System.Collections.Generic.IList<TaskRelationship> |
Progress
Gets or sets the progress.
Declaration
double Progress { get; set; }
Property Value
Type |
---|
System.Double |
Resources
Gets or sets the resources.
Declaration
IList<string> Resources { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> | The resources. |
StartDate
Gets or sets the start date.
Declaration
DateTime StartDate { get; set; }
Property Value
Type |
---|
System.DateTime |