Member Junction
    Preparing search index...

    Interface WhiteboardCancelableEventArgs

    Base shape of every cancelable BEFORE event raised by WhiteboardState (and by the components layered on top of it). Handlers run SYNCHRONOUSLY during the emit; any handler may set Cancel to true and the operation is aborted before it touches the board (no undo snapshot, no journal entry, no WhiteboardState.Changed$ emission). The matching AFTER event then never fires.

    interface WhiteboardCancelableEventArgs {
        Cancel: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    Cancel: boolean

    Set to true (in a synchronous handler) to veto the operation.