When overridden in a derived class, gets the time corresponding to a location on the canvas.

Namespace: Mindscape.SilverlightElements
Assembly: Mindscape.SilverlightElements (in Mindscape.SilverlightElements.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
protected abstract DateTime GetDateTime(
	double x,
	double y,
	TimeEnd timeEnd
)
Visual Basic
Protected MustOverride Function GetDateTime ( _
	x As Double, _
	y As Double, _
	timeEnd As TimeEnd _
) As DateTime
Visual C++
protected:
virtual DateTime GetDateTime(
	double x, 
	double y, 
	TimeEnd timeEnd
) abstract

Parameters

x
Type: System..::..Double
The x-coordinate of the location.
y
Type: System..::..Double
The y-coordinate of the location.
timeEnd
Type: Mindscape.SilverlightElements..::..TimeEnd
Whether to adjust the time for the start or end of a ScheduleItem.

Return Value

The date and time corresponding to x and y.

See Also