Skip to main content
All docs
V26.1
  • FormFieldCollection.Find(Predicate<FormField>) Method

    Searches for a form field that matches the specified criteria and returns the first occurrence within the entire collection of form fields.

    Namespace: DevExpress.Docs.Pdf

    Assembly: DevExpress.Docs.Pdf.v26.1.dll

    Declaration

    public FormField Find(
        Predicate<FormField> predicate
    )

    Parameters

    Name Type Description
    predicate Predicate<FormField>

    A delegate that defines the conditions of the form field to search for.

    Returns

    Type Description
    FormField

    The first form field that matches the specified criteria, or null if no match is found.

    See Also