pdfrx_web
    Preparing search index...

    Interface PdfFormFieldFlags

    Decoded common AcroForm field flags from /Ff. See ISO 32000-2:2020, 12.7.4.1, Tables 226 ("Entries common to all field dictionaries") and 227 ("Field flags common to all field types").

    interface PdfFormFieldFlags {
        noExport: boolean;
        readOnly: boolean;
        required: boolean;
    }
    Index
    noExport: boolean

    The field is excluded from form submission/export.

    readOnly: boolean

    The field cannot be edited by the user.

    required: boolean

    The field must have a value when the form is submitted.