@ebarooni/capacitor-calendar
    Preparing search index...

    Interface DeleteEventOptions

    7.1.0

    interface DeleteEventOptions {
        commit?: boolean;
        id: string;
        instanceDate?: number;
        span?: EventSpan;
    }
    Index

    Properties

    commit?: boolean

    Whether to save the deletion to the event store immediately. Pass false to batch multiple changes and commit them together using CapacitorCalendar.commit(), which is more efficient than committing each save individually.

    false
    
    true
    

    iOS

    8.3.0

    id: string

    The ID of the event to delete.

    '1234'
    

    Android, iOS

    7.1.0

    instanceDate?: number

    The start time of the occurrence to delete, in milliseconds since the epoch. Use startDate from listEventsInRange. On Android, required for THIS_EVENT on recurring events. If omitted with THIS_AND_FUTURE_EVENTS, the whole series is deleted.

    1716153600000
    

    Android

    8.3.0

    span?: EventSpan

    How much of a recurring series to delete.

    EventSpan.THIS_EVENT
    
    EventSpan.THIS_EVENT
    

    Android, iOS

    7.1.0