Member Junction
    Preparing search index...

    Interface WhiteboardPageAddingEventArgs

    BEFORE-event args for WhiteboardState.PageAdding$ — raised by WhiteboardState.AddPage before the page exists. Handlers may rewrite Name (the engine trims it; an emptied name falls back to the auto-name) or set Cancel to veto the add (the caller receives null).

    interface WhiteboardPageAddingEventArgs {
        Author: WhiteboardAuthor;
        Cancel: boolean;
        Name: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    Who is adding the page.

    Cancel: boolean

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

    Name: string

    The name the page will get (auto-named "Page N" when the caller omitted one).