RevGrid - v0.10.0
    Preparing search index...

    Represents a rectangle defined by its top-left corner (x, y) and its dimensions (width, height).

    interface RevRectangle {
        height: number;
        width: number;
        x: number;
        y: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    height: number

    The height of the rectangle.

    width: number

    The width of the rectangle.

    x: number

    The x-coordinate of the top-left corner of the rectangle.

    y: number

    The y-coordinate of the top-left corner of the rectangle.