sesaparcours
    Preparing search index...
    interface IBoundedElement {
        getBoundingRectangle(): Blockly.utils.Rect;
        moveBy(dx: number, dy: number): void;
    }

    Implemented by

    Index

    Methods

    • Returns the coordinates of a bounded element describing the dimensions of the element. Coordinate system: workspace coordinates.

      Returns Blockly.utils.Rect

      Object with coordinates of the bounded element.

    • Move the element by a relative offset.

      Parameters

      • dx: number

        Horizontal offset in workspace units.

      • dy: number

        Vertical offset in workspace units.

      Returns void