Class DocumentPage
Content and layout elements extracted from a page from the input.
Inheritance
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentPage
Properties
Angle
The general orientation of the content in clockwise direction, measured in degrees between (-180, 180].
Declaration
public Nullable<float> Angle { get; }
Property Value
System.Nullable<System.Single>
|
Height
The height of the image/PDF in pixels/inches, respectively.
Declaration
public Nullable<float> Height { get; }
Property Value
System.Nullable<System.Single>
|
Kind
Kind of document page.
Declaration
public Azure.AI.FormRecognizer.DocumentAnalysis.DocumentPageKind Kind { get; }
Property Value
DocumentPageKind
|
Lines
Extracted lines from the page, potentially containing both textual and visual elements.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentLine> Lines { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentLine>
|
PageNumber
1-based page number in the input document.
Declaration
public int PageNumber { get; }
Property Value
System.Int32
|
SelectionMarks
Extracted selection marks from the page.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentSelectionMark> SelectionMarks { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentSelectionMark>
|
Spans
Location of the page 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>
|
Unit
The unit used by the width, height and BoundingPolygon properties. For images, the unit is pixel. For PDF, the unit is inch.
Declaration
public Nullable<Azure.AI.FormRecognizer.DocumentAnalysis.LengthUnit> Unit { get; }
Property Value
System.Nullable<LengthUnit>
|
Width
The width of the image/PDF in pixels/inches, respectively.
Declaration
public Nullable<float> Width { get; }
Property Value
System.Nullable<System.Single>
|
Words
Extracted words from the page.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentWord> Words { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentWord>
|