IsAllDayEvent property

bool? get IsAllDayEvent
Gets the original start time of this appointment. Gets or sets a value indicating whether this appointment is an all day event.

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;