Skip to main content
A newer version of this page is available. .

PdfDocumentProcessor.CheckFormFieldNameCollisions(PdfAcroFormField[]) Method

Checks interactive form fields to find a collision in the form field names.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Docs.v18.2.dll

Declaration

public IList<PdfAcroFormFieldNameCollision> CheckFormFieldNameCollisions(
    params PdfAcroFormField[] fields
)

Parameters

Name Type Description
fields PdfAcroFormField[]

A PdfAcroFormField array containing interactive form fields that should be checked to find a collision in the form field names.

Returns

Type Description
IList<PdfAcroFormFieldNameCollision>

A collection of PdfAcroFormFieldNameCollision objects that contains information about a collision found in interactive form field names.

Remarks

Form field names must be unique within an interactive form.

To obtain the interactive form field in which a collision was found with a field name, use the PdfAcroFormFieldNameCollision.Field property.

You can also get the forbidden field names using the PdfAcroFormFieldNameCollision.ForbiddenNames property.

See Also