Represents a method that returns vertical bar separator date and times and vertical bar information between two specified date and time values to be used by a GanttChartViewVerticalBarProvider.

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

Syntax

C#
public delegate SortedList<DateTime, VerticalBar> VerticalBarSeparatorProvider(
	DateTime start,
	DateTime finish
)
Visual Basic (Declaration)
Public Delegate Function VerticalBarSeparatorProvider ( _
	start As DateTime, _
	finish As DateTime _
) As SortedList(Of DateTime, VerticalBar)

Parameters

start
Type: System..::.DateTime
The starting date and time to get vertical bar separator date and times from.
finish
Type: System..::.DateTime
The finishing date and time to get vertical bar separator date and times to.

Return Value

The vertical bar separator date and times and vertical bar information between the specified date and time values to be used by a GanttChartViewVerticalBarProvider.

See Also