DsPdfJS API - v9.1.0
    Preparing search index...

    Type Alias Rect

    Represents the location and size of a rectangle. The origin is at the top left corner.

    type Rect = {
        height: number;
        width: number;
        x: number;
        y: number;
    }
    Index

    Properties

    Properties

    height: number

    The height of the rectangle.

    width: number

    The width of the rectangle.

    x: number

    The X coordinate of the rectangle.

    y: number

    The Y coordinate of the rectangle.