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

interface IAnnotationPoint {
    x?: number;
    y?: number;
}

Implemented by

Properties

Properties

x?: number

The horizontal offset in pixels from the left edge of the page.

y?: number

The vertical offset in pixels from the top edge of the page.