Represents a method that returns time scale separator date and times and optionally description text between two specified date and time values to be used by a TimeScale.

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

Syntax

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

Parameters

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

Return Value

The time scale separator date and times and optionally description text between the specified date and time values to be used by a TimeScale.

See Also