New to Telerik UI for WPFStart a free 30-day trial

Represents a provider that filters the occurrence collection.

Definition

Namespace:Telerik.Windows.Controls.ScheduleView

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public interface IOccurrenceIterationProvider

Derived Classes: RadScheduleViewScheduleViewBase

Methods

Gets all occurrences occurrences.

C#
IEnumerable<Occurrence> GetOccurrences()
Returns:

IEnumerable<Occurrence>

The occurrences.

Gets all occurrences between the given two occurrences.

C#
IEnumerable<Occurrence> GetOccurrencesBetween(IOccurrence start, IOccurrence end)
Parameters:startIOccurrence

The starting occurrence.

endIOccurrence

The ending occurrence.

Returns:

IEnumerable<Occurrence>

A collection with filtered occurrences.

Gets all occurrences from the given occurrence.

C#
IEnumerable<Occurrence> GetOccurrencesFrom(IOccurrence start)
Parameters:startIOccurrence

The starting occurrence.

Returns:

IEnumerable<Occurrence>

The filtered occurrences.

Gets all occurrences to the given occurrence.

C#
IEnumerable<Occurrence> GetOccurrencesTo(IOccurrence end)
Parameters:endIOccurrence

The ending occurrence.

Returns:

IEnumerable<Occurrence>

The filtered occurrences.