Visualization
    Preparing search index...

    Interface PopoutOptions

    Represents options that specifies where and how a pop out dialog shall be shown.

    interface PopoutOptions {
        alignment?: "Left" | "Right" | "Top" | "Bottom";
        autoClose: boolean;
        x: number;
        y: number;
        onChange(event: PopoutComponentEvent): void;
        onClosed?(): void;
    }
    Index

    Properties

    alignment?: "Left" | "Right" | "Top" | "Bottom"

    Specifies how to position of the popout in relation to the anchor point specified by x and y.

    The alignment value specifies which edge of the pop out that shall be closest to the anchor point. For example, to show the pop out below the anchor point, specify Top.

    autoClose: boolean

    Specifies whether to automatically close the popout when one of the components in it is clicked.

    x: number

    Specifies the horizontal pixel coordinate of the anchor point of the pop out dialog.

    The coordinate is specified relative to an origin in the top left corner of the Mod viewport.

    y: number

    Specifies the vertical pixel coordinate of the anchor point of the pop out dialog.

    The coordinate is specified relative to an origin in the top left corner of the Mod viewport.

    Methods

    • Specifies the callback to invoke when the pop out dialog has been closed. This callback is optional and can be left unassigned.

      Returns void