Interface IAppointment
Defines basic methods and properties of an appointment.
Namespace: Telerik.Maui.Controls.Scheduler
Assembly: Telerik.Maui.Controls.dll
Syntax
public interface IAppointment : IDateRange, INotifyPropertyChanged, IEquatable<IAppointment>, ICopyable<IAppointment>
Properties
End
Gets or sets the System.DateTime value determining the end date and time of the IAppointment.
Declaration
DateTime End { get; set; }
Property Value
System.DateTime
|
IsAllDay
Gets or sets the System.Boolean value indicating if the current IAppointment is an All-day one.
Declaration
bool IsAllDay { get; set; }
Property Value
System.Boolean
|
RecurrenceRule
Gets or sets the recurrence rule.
Declaration
IRecurrenceRule RecurrenceRule { get; set; }
Property Value
IRecurrenceRule
The recurrence rule. |
Start
Gets or sets the System.DateTime value determining the start date and time of the IAppointment.
Declaration
DateTime Start { get; set; }
Property Value
System.DateTime
|
Subject
Gets or sets the System.String value representing the subject of the IAppointment object.
Declaration
string Subject { get; set; }
Property Value
System.String
|
TimeZone
Gets or sets the appointment time zone.
Declaration
TimeZoneInfo TimeZone { get; set; }
Property Value
System.TimeZoneInfo
The appointment time zone. |
Events
RecurrenceRuleChanged
Occurs when RecurrencePattern status is changed.
Declaration
event EventHandler RecurrenceRuleChanged
Event Type
System.EventHandler
|