Interface WbActivateEventType

interface WbActivateEventType {
    event: Event;
    node: WunderbaumNode;
    prevNode: WunderbaumNode;
    tree: Wunderbaum;
    type: string;
    typeInfo: NodeTypeDefinition;
    util: any;
}

Hierarchy (view full)

Properties

event: Event

The original event.

The affected target node.

prevNode: WunderbaumNode

The affected tree instance.

type: string

Name of the event.

Contains the node's type information, i.e. tree.types[node.type] if defined. Set to {} otherwise.

util: any

Exposed utility module methods (see API docs).