Interface IRecurrenceRule
Defines basic properties of a recurrence rule.
Inherited Members
Namespace: Telerik.Windows.Controls.ScheduleView
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public interface IRecurrenceRule : ICopyable<IRecurrenceRule>, IObjectGenerator<IExceptionOccurrence>
Properties
Exceptions
Gets the exceptions from the recurrence pattern.
Declaration
ICollection<IExceptionOccurrence> Exceptions { get; }
Property Value
System.Collections.Generic.ICollection<IExceptionOccurrence>
The exceptions. |
Pattern
Gets or sets the recurrence pattern.
Declaration
RecurrencePattern Pattern { get; set; }
Property Value
RecurrencePattern
The recurrence pattern. |
Methods
CreateExceptionAppointment(IAppointment)
Creates a new IAppointment instance that will hold the exception properties of the specified master appointment.
Declaration
IAppointment CreateExceptionAppointment(IAppointment master)
Parameters
IAppointment
master
|
Returns
IAppointment
|