Represents an interval provider function that can be used with the Custom scale type.

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

Syntax

C#
public delegate IEnumerable<ScaleInterval> ScaleIntervalProvider(
	DateTime start,
	DateTime finish
)
Visual Basic (Declaration)
Public Delegate Function ScaleIntervalProvider ( _
	start As DateTime, _
	finish As DateTime _
) As IEnumerable(Of ScaleInterval)

Parameters

start
Type: System..::.DateTime
The start of the current timline page for which the intervals are needed.
finish
Type: System..::.DateTime
The finish of the current timline page for which the intervals are needed.

See Also