Vertex Viewer SDK
    Preparing search index...

    Interface VertexViewerPinLabel

    interface VertexViewerPinLabel {
        elementBounds?: DOMRect;
        pin?: TextPin;
        pinController?: PinController;
        setFocus: () => Promise<void>;
        submit: () => Promise<void>;
        value: string;
    }
    Index
    elementBounds?: DOMRect

    The dimensions of the canvas for the pins

    pin?: TextPin

    The pin to draw for the group

    pinController?: PinController

    The controller that drives behavior for pin operations

    setFocus: () => Promise<void>

    Gives focus to the component's internal text input.

    submit: () => Promise<void>
    value: string

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

    ''