Gets or sets the predecessor item collection of this TaskItem. The predecessor item collection is used to indicate dependencies between tasks. You can use a collection of PredecessorItem objects as the task predecessor item collection. This is a dependency property.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.Core (in DlhSoft.ProjectData.Core.dll)

Syntax

C#
[BindableAttribute(true)]
public ObservableCollection<PredecessorItem> Predecessors { get; set; }
Visual Basic (Declaration)
<BindableAttribute(True)> _
Public Property Predecessors As ObservableCollection(Of PredecessorItem)

See Also