Class FieldData
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.
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class FieldData : Azure.AI.FormRecognizer.Models.FormElement
Properties
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.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.Models.FormElement> FieldElements { get; }
Property Value
System.Collections.Generic.IReadOnlyList<FormElement>
|
Operators
Implicit(FieldData to String)
Declaration
public static implicit operator string (Azure.AI.FormRecognizer.Models.FieldData text);
Parameters
FieldData
text
The instance to be converted into a System.String. |
Returns
System.String
The System.String corresponding to the recognized text. |