@jsfkit/types
    Preparing search index...

    Type Alias AdjustValueHandleXY

    XY adjustment handle for custom shapes.

    Defines an interactive handle that can be dragged to adjust shape geometry using Cartesian coordinates (X and Y positions).

    type AdjustValueHandleXY = {
        gdRefX?: GeomGuideName;
        gdRefY?: GeomGuideName;
        maxX?: GeomGuideName | EmuValue;
        maxY?: GeomGuideName | EmuValue;
        minX?: GeomGuideName | EmuValue;
        minY?: GeomGuideName | EmuValue;
        pos: AdjustPoint;
        type: "xy";
    }
    Index

    Properties

    gdRefX?: GeomGuideName

    Name of the guide that this handle adjusts for the X axis.

    gdRefY?: GeomGuideName

    Name of the guide that this handle adjusts for the Y axis.

    Maximum X coordinate value allowed for this handle (as coordinate or reference to guide).

    Maximum Y coordinate value allowed for this handle (as coordinate or reference to guide).

    Minimum X coordinate value allowed for this handle (as coordinate or reference to guide).

    Minimum Y coordinate value allowed for this handle (as coordinate or reference to guide).

    Position of the adjustment handle in the shape's coordinate system.

    type: "xy"

    Type discriminator for XY adjustment handles.