Member Junction
    Preparing search index...

    Interface WhiteboardItemAddingEventArgs

    BEFORE-event args for WhiteboardState.ItemAdding$. Raised by WhiteboardState.AddItem (and therefore also by WhiteboardState.Highlight and WhiteboardState.DuplicateItem, which add through it) before anything is stamped or stored. Handlers may mutate Input (e.g. clamp coordinates, rewrite text) — the engine adds whatever the args carry after the emit — or set Cancel to veto the add entirely (the caller receives null).

    interface WhiteboardItemAddingEventArgs {
        Author: WhiteboardAuthor;
        Cancel: boolean;
        Input: WhiteboardItemInput;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    Who is adding the item.

    Cancel: boolean

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

    The item about to be added (no ID / Z / Author yet — the engine stamps those).