Class DocumentKeyValueElement
An object representing the field key or value in a key-value pair.
Inheritance
System.Object
DocumentKeyValueElement
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentKeyValueElement
Properties
BoundingRegions
Bounding regions covering the key-value element.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.BoundingRegion> BoundingRegions { get; }
Property Value
System.Collections.Generic.IReadOnlyList<BoundingRegion>
|
Content
Concatenated content of the key-value element in reading order.
Declaration
public string Content { get; }
Property Value
System.String
|
Spans
Location of the key-value element in the reading order concatenated content.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentSpan> Spans { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentSpan>
|