表示在文档中某个特定点获取链接所需的参数。

const linkAtPoint = {
doc: doc,
page: page,
x: 100,
y: 100
};
interface LinkAtPointType {
    doc: DocType;
    page: PageType;
    x: number;
    y: number;
}

Properties

Properties

doc: DocType

要从中检索链接的文档。

page: PageType

文档中该点所在的页面对象。

x: number

该点的 x 坐标。

y: number

该点的 y 坐标。