SheetXL - v0.3.20
    Preparing search index...

    Interface Rectangle

    Represents a rectangle with left, top, right, and bottom coordinates.

    interface Rectangle {
        bottom: number;
        left: number;
        right: number;
        top: number;
    }
    Index

    Properties

    Properties

    bottom: number

    The bottom coordinate of the rectangle.

    left: number

    The left coordinate of the rectangle.

    right: number

    The right coordinate of the rectangle.

    top: number

    The top coordinate of the rectangle.