Skip to main content
All docs
V26.1
  • FormFieldCollection.Find(Predicate<FormField>, out GroupField) 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,
        out GroupField parentGroup
    )

    Parameters

    Name Type Description
    predicate Predicate<FormField>

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

    parentGroup GroupField

    When this method returns, contains the parent group of the found form field, if any.

    Returns

    Type Description
    FormField

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

    See Also