Class DocumentParagraph
A paragraph object consisting with contiguous lines generally with common alignment and spacing.
Inheritance
System.Object
DocumentParagraph
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentParagraph
Properties
BoundingRegions
Bounding regions covering the paragraph.
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 paragraph in reading order.
Declaration
public string Content { get; }
Property Value
System.String
|
Role
Semantic role of the paragraph.
Declaration
public Nullable<Azure.AI.FormRecognizer.DocumentAnalysis.ParagraphRole> Role { get; }
Property Value
System.Nullable<ParagraphRole>
|
Spans
Location of the paragraph 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>
|