Class FormField
Represents a field recognized in an input form.
Inheritance
System.Object
FormField
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class FormField
Properties
Confidence
Measures the degree of certainty of the recognition result. Value is between [0.0, 1.0].
Declaration
public float Confidence { get; }
Property Value
System.Single
|
LabelData
Contains the text, bounding box and content of the label of the field in the form.
Declaration
public Azure.AI.FormRecognizer.Models.FieldData LabelData { get; }
Property Value
FieldData
|
Name
Canonical name; uniquely identifies a field within the form.
Declaration
public string Name { get; }
Property Value
System.String
|
Value
The strongly-typed value of this FormField.
Declaration
public Azure.AI.FormRecognizer.Models.FieldValue Value { get; }
Property Value
FieldValue
|
ValueData
Contains the text, bounding box and content of the value of the field in the form.
Declaration
public Azure.AI.FormRecognizer.Models.FieldData ValueData { get; }
Property Value
FieldData
|