Iterates successor items of the specified item in the Gantt Chart related collection (i.e. those that have the specified item defined as a predecessor of any dependency type) as PredecessorItem objects.

Namespace:  DlhSoft.Windows.Controls
Assembly:  DlhSoft.ProjectData.GanttChart.LightWPF.Controls (in DlhSoft.ProjectData.GanttChart.LightWPF.Controls.dll)

Syntax

C#
public IEnumerable<PredecessorItem> GetSuccessorPredecessorItems(
	GanttChartItem item
)
Visual Basic (Declaration)
Public Function GetSuccessorPredecessorItems ( _
	item As GanttChartItem _
) As IEnumerable(Of PredecessorItem)

Parameters

item
Type: DlhSoft.Windows.Controls..::.GanttChartItem
The item to iterate successors of.

Return Value

The successor items of the specified item as PredecessorItem objects.

Implements

IGanttChartView..::.GetSuccessorPredecessorItems(GanttChartItem)

See Also