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

Defines basic properties of a recurrence rule.

Definition

Namespace:Telerik.Windows.Controls.ScheduleView

Assembly:Telerik.Windows.Controls.ScheduleView.dll

Syntax:

C#
public interface IRecurrenceRule : ICopyable<IRecurrenceRule>, IObjectGenerator<IExceptionOccurrence>

Derived Classes: RecurrenceRule

Inherited Members ICopyable<IRecurrenceRule>.Copy()ICopyable<IRecurrenceRule>.CopyFrom(IRecurrenceRule)IObjectGenerator<IExceptionOccurrence>.CreateNew()IObjectGenerator<IExceptionOccurrence>.CreateNew(IExceptionOccurrence)

Properties

Gets the exceptions from the recurrence pattern.

C#
ICollection<IExceptionOccurrence> Exceptions { get; }
Property Value:

The exceptions.

Gets or sets the recurrence pattern.

C#
RecurrencePattern Pattern { get; set; }
Property Value:

The recurrence pattern.

Methods

Creates a new IAppointment instance that will hold the exception properties of the specified master appointment.

C#
IAppointment CreateExceptionAppointment(IAppointment master)
Parameters:masterIAppointmentReturns:

IAppointment

Extension Methods