Member Junction
    Preparing search index...

    Interface WhiteboardSelectionChangedEventArgs

    AFTER-event args for WhiteboardState.SelectionChanged$ — the selection changed (single OR multi). Selection is UI state: it is not journaled, not undoable and not persisted, so this event is a notification only (not cancelable). Fires for explicit WhiteboardState.Select / WhiteboardState.ToggleSelect / WhiteboardState.SelectMany calls AND for implicit clears (a selected item was removed, the page switched, or a restore dropped it).

    interface WhiteboardSelectionChangedEventArgs {
        PreviousID: string;
        SelectedID: string;
        SelectedIDs: string[];
    }
    Index

    Properties

    PreviousID: string

    The previously primary item's ID, or null when nothing was selected.

    SelectedID: string

    The PRIMARY selected item's ID (last added to the selection), or null when cleared.

    SelectedIDs: string[]

    The full multi-selection (selection order, last = primary). Empty when cleared.