Class DocumentWord
A word object consisting of a contiguous sequence of characters. For non-space delimited languages, such as Chinese, Japanese, and Korean, each character is represented as its own word.
Inheritance
System.Object
DocumentWord
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentWord
Properties
BoundingPolygon
The polygon that outlines the content of this word. Coordinates are specified relative to the top-left of the page, and points are ordered clockwise from the left relative to the word 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
|
Confidence
Confidence of correctly extracting the word.
Declaration
public float Confidence { get; }
Property Value
System.Single
|
Content
Text content of the word.
Declaration
public string Content { get; }
Property Value
System.String
|
Span
Location of the word in the reading order concatenated content.
Declaration
public Azure.AI.FormRecognizer.DocumentAnalysis.DocumentSpan Span { get; }
Property Value
DocumentSpan
|