Gets a new DateAppointmentsCollection collection containing DateAppointments objects for the specified date range.

Namespace:  C1.C1Schedule.Printing
Assembly:  C1.WPF.C1Schedule (in C1.WPF.C1Schedule.dll)

Syntax

C#
public DateAppointmentsCollection this[
	DateTime start,
	DateTime end
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	start As DateTime, _
	end As DateTime _
) As DateAppointmentsCollection
	Get

Parameters

start
Type: System..::..DateTime
The DateTime value representing the beginning of the date range.
end
Type: System..::..DateTime
The DateTime value representing the end of the date range.

Return Value

The DateAppointmentsCollection collection containing DateAppointments objects for the specified date range.

Remarks

Resulting collection always contains the subset of the current collection. All days out of this collection date range are omitted.

See Also