Defines a delegate method that returns a value that indicates whether a new task dependency can be created between two specified task items.

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

Syntax

C#
public delegate bool DependencyCreationValidator(
	GanttChartItem dependentItem,
	GanttChartItem item
)
Visual Basic (Declaration)
Public Delegate Function DependencyCreationValidator ( _
	dependentItem As GanttChartItem, _
	item As GanttChartItem _
) As Boolean

Parameters

dependentItem
Type: DlhSoft.Windows.Controls..::.GanttChartItem
The dependent task item that would host the new predecessor item generating the dependency.
item
Type: DlhSoft.Windows.Controls..::.GanttChartItem
The task item that the dependent item will get a dependency from.

Return Value

A value that indicates whether the new task dependency can be created.

See Also