Interface IAppointment
An interface that defines the minimum properties that an appointment can have.
Namespace: Telerik.XamarinForms.Input
Assembly: Telerik.XamarinForms.Input.dll
Syntax
public interface IAppointment
Properties
Color
Gets or sets the color of the rectangle of the appointment.
Declaration
Color Color { get; set; }
Property Value
Xamarin.Forms.Color
|
Detail
Gets or sets additional information about the appointment.
Declaration
string Detail { get; set; }
Property Value
System.String
The detail. |
EndDate
Gets or sets the end date of the appointment.
Declaration
DateTime EndDate { get; set; }
Property Value
System.DateTime
|
IsAllDay
Gets or sets a value indicating if the event takes all day.
Declaration
bool IsAllDay { get; set; }
Property Value
System.Boolean
|
StartDate
Gets or sets the start date of the appointment.
Declaration
DateTime StartDate { get; set; }
Property Value
System.DateTime
|
Title
Gets or sets the title of the appointment.
Declaration
string Title { get; set; }
Property Value
System.String
|