Interface IRecurringScheduleAppointment
Provides the functionality for individual schedule items.
Inherited Members
System.ICloneable.Clone()
System.IComparable.CompareTo(System.Object)
Namespace: Syncfusion.Schedule
Assembly: Syncfusion.Schedule.Base.dll
Syntax
public interface IRecurringScheduleAppointment : IScheduleAppointment, IComparable, ICloneable
Remarks
IScheduleAppointments must implement IComparable and ICloneable. IComparable is used to order the incidents in sorts so the items can be properly arranged in the schedule. ICloneable is also required to handle support for drag and drop in the ScheduleControl.
Properties
DateList
Gets or sets the recurrenceList holding the dates associated with this recurring appointment.
Declaration
RecurrenceList DateList { get; set; }
Property Value
Type |
---|
RecurrenceList |
RecurrenceRule
Gets or sets the RecurrenceRule including both start and end dates.
Declaration
string RecurrenceRule { get; set; }
Property Value
Type |
---|
System.String |
RecurrenceRuleID
Gets or sets the unique identifier assigned to this recurrence appointment.
Declaration
int RecurrenceRuleID { get; set; }
Property Value
Type |
---|
System.Int32 |