Frame constraints delta update with optional frame-type-specific sub-properties.

interface FrameConstraintsDeltaUpdate {
    horizontalMovementAllowed?: { value: boolean };
    image?: ImageFrameConstraintsDeltaUpdate;
    proportionLocked?: { value: boolean };
    resizeAllowed?: { value: boolean };
    rotationAllowed?: { value: boolean };
    selectionAllowed?: { value: boolean };
    text?: TextFrameConstraintsDeltaUpdate;
    verticalMovementAllowed?: { value: boolean };
}

Properties

horizontalMovementAllowed?: { value: boolean }

Image-specific constraints update.

proportionLocked?: { value: boolean }
resizeAllowed?: { value: boolean }
rotationAllowed?: { value: boolean }
selectionAllowed?: { value: boolean }

Text-specific constraints update.

verticalMovementAllowed?: { value: boolean }