adobe-firefly-sdk
    Preparing search index...

    Type Alias PositionV2

    Position configuration for overlay placement.

    type PositionV2 = {
        anchorPoint?:
            | "top_left"
            | "top_right"
            | "bottom_left"
            | "bottom_right"
            | "center";
        offsetX?: number
        | null;
        offsetY?: number | null;
    }
    Index

    Properties

    anchorPoint?:
        | "top_left"
        | "top_right"
        | "bottom_left"
        | "bottom_right"
        | "center"

    Anchor point for taking the position reference.

    offsetX?: number | null

    Horizontal offset for the anchor point.

    offsetY?: number | null

    Vertical offset for the anchor point.