Vertex Viewer SDK
    Preparing search index...

    Interface VertexSceneTreeSearch

    interface VertexSceneTreeSearch {
        clear: () => Promise<void>;
        controller?: SceneTreeController;
        debounce?: number;
        disabled: boolean;
        placeholder?: string;
        setFocus: () => Promise<void>;
        value: string;
    }
    Index
    clear: () => Promise<void>

    Clears the current search term and clears any debounced filters.

    controller?: SceneTreeController

    The scene tree controller

    debounce?: number

    Specifies the delay, in milliseconds, to emit search events after user input.

    If this value is specified, searches will automatically occur after a keystroke has occurred and the debounce threshold has elapsed.

    Defaults to undefined, and searches only occur on an Enter press or a blur event.

    disabled: boolean

    If true, disables user interaction of the component.

    false
    
    placeholder?: string

    Placeholder text if value is empty.

    undefined
    
    setFocus: () => Promise<void>

    Gives focus to the component's internal text input.

    value: string

    The current text value of the component. Value is updated on user interaction.

    ''