Member Junction
    Preparing search index...

    Base shape for cancelable Recycle Bin events. Set cancel = true to abort the operation; the matching after* event will not fire.

    interface CancelableRecycleBinEventArgs {
        bin: unknown;
        cancel: boolean;
        cancelReason?: string;
        entityName: string;
        timestamp: Date;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bin: unknown

    The Recycle Bin component instance that raised the event.

    cancel: boolean

    Set to true to abort.

    cancelReason?: string

    Optional reason surfaced by the consumer.

    entityName: string

    The entity the bin is operating on.

    timestamp: Date

    When the event was raised.