FieldData Class

Definition

A form element representing text that is part of a FormField. This includes the location of the text in the form and a collection of the form elements that make up the text.

public class FieldData : Azure.AI.FormRecognizer.Models.FormElement
type FieldData = class
    inherit FormElement
Public Class FieldData
Inherits FormElement
Inheritance
FieldData

Properties

BoundingBox

The quadrilateral bounding box that outlines the text of this element. Units are in pixels for images and inches for PDF. The LengthUnit type of a recognized page can be found at Unit.

(Inherited from FormElement)
FieldElements

When 'IncludeFieldElements' is set to true, a list of references to the field elements constituting this FieldData. An empty list otherwise. For calls to recognize content, this list is always populated.

PageNumber

The 1-based number of the page in which this element is present.

(Inherited from FormElement)
Text

The text of this form element. It can be a whole line or a single word.

(Inherited from FormElement)

Operators

Implicit(FieldData to String)

Implicitly converts a FieldData instance into a String, using the value returned by Text.

Applies to