IsAllDayEvent property
bool?
get
IsAllDayEvent
Implementation
// DateTime get OriginalStart => this.PropertyBag[AppointmentSchema.OriginalStart];
/// <summary>
/// Gets or sets a value indicating whether this appointment is an all day event.
/// </summary>
bool? get IsAllDayEvent =>
this.PropertyBag[AppointmentSchema.IsAllDayEvent] as bool?;
set
IsAllDayEvent
(bool? value)
Implementation
set IsAllDayEvent(bool? value) =>
this.PropertyBag[AppointmentSchema.IsAllDayEvent] = value;