IAppointment
Defines basic methods and properties of an appointment.
Definition
Namespace:Telerik.Windows.Controls.ScheduleView
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
public interface IAppointment : IOccurrence, IDateSpan, INotifyPropertyChanged, IEditableObject, IEquatable<IAppointment>, ICopyable<IAppointment>
Derived Classes:
Inherited Members
Properties
Gets or sets the DateTime value determining the end date and time of the IAppointment.
DateTime End { get; set; }
Gets or sets the bool value indicating if the current IAppointment is an All-day one.
bool IsAllDayEvent { get; set; }
Gets or sets the recurrence rule.
IRecurrenceRule RecurrenceRule { get; set; }
The recurrence rule.
Gets the collection containing the resources, associated with the appointment.
IList Resources { get; }
Gets or sets the DateTime value determining the start date and time of the IAppointment.
DateTime Start { get; set; }
Gets or sets the string value representing the subject of the IAppointment object.
string Subject { get; set; }
Gets or sets the appointment time zone.
TimeZoneInfo TimeZone { get; set; }
The appointment time zone.
Events
Occurs when RecurrencePattern status is changed.
event EventHandler RecurrenceRuleChanged