Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Describes the size and position of a rectangle.

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

    Properties

    height: number

    The height of the Rect.

    3

    width: number

    The width of the Rect.

    2

    x: number

    The x coordinate of the Rect's origin.

    0

    y: number

    The y coordinate of the Rect's origin

    1