Member Junction
    Preparing search index...

    Interface WhiteboardContentApplyingEventArgs

    BEFORE-event args for the board/host ContentApplying output — raised when an in-board editor commit (inline sticky/text/shape edit, or the markdown/HTML rich editor's Apply/Done) is about to write the draft into the state engine. Handlers run synchronously; set Cancel to true to discard the commit (the item keeps its previous content and ContentApplied never fires). Handlers may also rewrite Content / Title — the edited values are what gets applied.

    interface WhiteboardContentApplyingEventArgs {
        Cancel: boolean;
        Content: string;
        ItemID: string;
        Kind: WhiteboardEditableContentKind;
        Title?: string;
    }
    Index

    Properties

    Cancel: boolean

    Set to true (in a synchronous handler) to discard the commit.

    Content: string

    The committed content: Text (sticky/text), Label (shape), Markdown or Html source.

    ItemID: string

    The target item's ID.

    The target item's kind (decides which field the content lands in).

    Title?: string

    HTML widgets only: the committed header title ('' clears it).