isAllDayEvent property

bool? isAllDayEvent

Checks if this event is an all-day event using the proprietary X-MICROSOFT-CDO-ALLDAYEVENT property.

Implementation

bool? get isAllDayEvent =>
    getProperty<BooleanProperty>(BooleanProperty.propertyNameAllDayEvent)
        ?.boolValue;
void isAllDayEvent=(bool? value)

Sets if this event is an all-day event using the proprietary X-MICROSOFT-CDO-ALLDAYEVENT property.

Note that no other changes are done even when the given value is true, ie neither start, nor end nor duration is changed.

Implementation

set isAllDayEvent(bool? value) => setOrRemoveProperty(
    BooleanProperty.propertyNameAllDayEvent,
    BooleanProperty.create(BooleanProperty.propertyNameAllDayEvent, value));