Class DocumentLine
A content line object consisting of an adjacent sequence of content elements, such as words and selection marks.
Inheritance
System.Object
DocumentLine
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentLine
Properties
BoundingPolygon
The polygon that outlines the content of this line. Coordinates are specified relative to the top-left of the page, and points are ordered clockwise from the left relative to the line orientation. 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.DocumentAnalysis.BoundingPolygon BoundingPolygon { get; }
Property Value
BoundingPolygon
|
Content
Concatenated content of the contained elements in reading order.
Declaration
public string Content { get; }
Property Value
System.String
|
Spans
Location of the line 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>
|