Class AppointmentBase
Provides base class for appointments.
Inherited Members
Namespace: Telerik.Maui.Controls.Scheduler
Assembly: Telerik.Maui.Controls.dll
Syntax
public abstract class AppointmentBase : NotifyPropertyChangedBase, IAppointment, IDateRange, INotifyPropertyChanged, IEquatable<IAppointment>, ICopyable<IAppointment>, IExtendedAppointment
Constructors
AppointmentBase()
Properties
Category
Gets or sets the System.String value representing the category of the IAppointment object.
Declaration
public virtual ICategory Category { get; set; }
Property Value
ICategory
|
Implements
End
Gets or sets the System.DateTime value determining the end date and time of the IAppointment.
Declaration
public virtual DateTime End { get; set; }
Property Value
System.DateTime
|
Implements
Importance
Gets or sets the importance.
Declaration
public virtual Importance Importance { get; set; }
Property Value
Importance
The importance. |
Implements
IsAllDay
Gets or sets the System.Boolean value indicating whether the current IAppointment is an All-day one.
Declaration
public virtual bool IsAllDay { get; set; }
Property Value
System.Boolean
|
Implements
RecurrenceRule
Gets or sets the IRecurrenceRule value determining the recurrence rule of the IAppointment.
Declaration
public virtual IRecurrenceRule RecurrenceRule { get; set; }
Property Value
IRecurrenceRule
The recurrence rule. |
Implements
Start
Gets or sets the System.DateTime value determining the start date and time of the IAppointment.
Declaration
public virtual DateTime Start { get; set; }
Property Value
System.DateTime
|
Implements
Subject
Gets or sets the System.String value representing the subject of the IAppointment object.
Declaration
public virtual string Subject { get; set; }
Property Value
System.String
|
Implements
TimeMarker
Gets or sets the System.String value representing the body of the IAppointment object.
Declaration
public virtual ITimeMarker TimeMarker { get; set; }
Property Value
ITimeMarker
|
Implements
TimeZone
Gets or sets the time zone.
Declaration
public virtual TimeZoneInfo TimeZone { get; set; }
Property Value
System.TimeZoneInfo
The time zone. |
Implements
Methods
Copy()
Deep copies this instance.
Declaration
public virtual IAppointment Copy()
Returns
IAppointment
A deep copy of the current object. |
Implements
CopyFrom(IAppointment)
Deep copies all properties from other
to this IAppointment.
Declaration
public virtual void CopyFrom(IAppointment other)
Parameters
IAppointment
other
The IAppointment which properties are copied. |
Implements
Equals(IAppointment)
Indicates whether the current object is equal to another object of the same type.
Declaration
public virtual bool Equals(IAppointment other)
Parameters
IAppointment
other
|
Returns
System.Boolean
|
OnRecurrenceRuleChanged(EventArgs)
Raises the RecurrenceRuleChanged event.
Declaration
protected virtual void OnRecurrenceRuleChanged(EventArgs args)
Parameters
System.EventArgs
args
The System.EventArgs instance containing the event data. |
Events
RecurrenceRuleChanged
Occurs when RecurrenceRule status is changed.
Declaration
public event EventHandler RecurrenceRuleChanged
Event Type
System.EventHandler
|