Adds a time period to the schedule. Any overlapping periods that are currently present in the schedule are combined.

Namespace: Zeptomoby.OrbitTools.Track
Assembly: Zeptomoby.OrbitTools.Track (in Zeptomoby.OrbitTools.Track.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

C#
public void AddPeriod(
	DateTime start,
	DateTime stop,
	T content
)
Visual Basic
Public Sub AddPeriod ( _
	start As DateTime, _
	stop As DateTime, _
	content As T _
)
Visual C++
public:
void AddPeriod(
	DateTime start, 
	DateTime stop, 
	T content
)

Parameters

start
Type: System..::..DateTime
The period start time.
stop
Type: System..::..DateTime
The period stop time.
content
Type: T
Optional content associated with the period.

See Also