interface IEnvelopeFieldOptions {
    checked?: boolean;
    id: string;
    selected?: boolean;
    value: string;
    x: number;
    y: number;
}

Properties

checked?: boolean

For checkboxes, whether it is currently checked

id: string

The unique ID of the field

selected?: boolean

For radio buttons, whether it is currently selected

value: string

The visible label for the field e.g. 'Not Applicable'

x: number

The X position of the field on the page. Self-placed fields will have an X value of 0.

y: number

The Y position of the field on the page. Self-placed fields will have an X value of 0.