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

    Type Alias Bounds

    Represents rectangular boundaries in various ways. The origin is at the top left corner.

    type Bounds = {
        bottom?: number;
        height?: number;
        left?: number;
        location?: Point;
        right?: number;
        size?: Size;
        top?: number;
        width?: number;
        x?: number;
        y?: number;
    }
    Index

    Properties

    bottom?: number

    Coordinate of the bottom side of the rectangle.

    height?: number

    The height of the rectangle.

    left?: number

    Coordinate of the left side of the rectangle.

    location?: Point

    Coordinates of the top left corner of the rectangle.

    right?: number

    Coordinate of the right side of the rectangle.

    size?: Size

    The size of the rectangle.

    top?: number

    Coordinate of the top side 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.