A rectangular region on a page, in image pixels from the top-left corner.

interface IAnnotationRectangle {
    height?: number;
    width?: number;
    x?: number;
    y?: number;
}

Implemented by

Properties

Properties

height?: number

The height of the rectangle in pixels.

width?: number

The width of the rectangle in pixels.

x?: number

The horizontal offset in pixels of the left edge of the rectangle.

y?: number

The vertical offset in pixels of the top edge of the rectangle.