get_fields_by_name method

get_fields_by_name

Returns the collection of field data where the name is equal to field_name.

Returns

A collection of FieldData objects; empty collection if no field data is found.

def get_fields_by_name(self, field_name):
    ...
Parameter Type Description
field_name System.String The name of the field.

Example

Find fields by a field name:

FieldData class represents field data. Depending on the field FieldData.page_area property can contain any of the inheritors of PageArea class. For example, Parser.parse_form method extracts only text fields.

See Also