IOccurrenceIterationProvider
Interface
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:
Methods
Gets all occurrences occurrences.
Gets all occurrences between the given two occurrences.
C#
IEnumerable<Occurrence> GetOccurrencesBetween(IOccurrence start, IOccurrence end)
The starting occurrence.
endIOccurrenceThe ending occurrence.
Returns:A collection with filtered occurrences.
Gets all occurrences from the given occurrence.
C#
IEnumerable<Occurrence> GetOccurrencesFrom(IOccurrence start)
The starting occurrence.
Returns:The filtered occurrences.
Gets all occurrences to the given occurrence.
C#
IEnumerable<Occurrence> GetOccurrencesTo(IOccurrence end)
The ending occurrence.
Returns:The filtered occurrences.