Signature position information

const signaturePosInfo = {
doc: doc,
pageIndex: 0,
left: 100,
right: 200,
top: 100,
bottom: 200,
fileSavePath: 'path/to/save/file'
}
interface SignaturePosInfoType {
    bottom?: number;
    doc?: DocType;
    fieldDict?: PDFObjectType;
    fileSavePath?: string;
    left?: number;
    pageIndex?: number;
    right?: number;
    top?: number;
}

Properties

bottom?: number

The bottom position

doc?: DocType

The document object

fieldDict?: PDFObjectType

The field dictionary

fileSavePath?: string

The file save path

left?: number

The left position

pageIndex?: number

The page index

right?: number

The right position

top?: number

The top position