Class FormElement
Represents a form element recognized from the input document. Its text can be a line, a word, the content of a table cell, a selection mark, etc.
Inheritance
System.Object
FormElement
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public abstract class FormElement
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.
Declaration
public Azure.AI.FormRecognizer.Models.FieldBoundingBox BoundingBox { get; }
Property Value
FieldBoundingBox
|
PageNumber
The 1-based number of the page in which this element is present.
Declaration
public int PageNumber { get; }
Property Value
System.Int32
|
Text
The text of this form element. It can be a whole line or a single word.
Declaration
public string Text { get; }
Property Value
System.String
|