Class DocumentCaption
An object representing the location and content of a table caption.
Inheritance
System.Object
DocumentCaption
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
[System.ComponentModel.EditorBrowsable]
public class DocumentCaption
Properties
BoundingRegions
Bounding regions covering the table caption.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.BoundingRegion> BoundingRegions { get; }
Property Value
System.Collections.Generic.IReadOnlyList<BoundingRegion>
|
Content
Table caption content.
Declaration
public string Content { get; }
Property Value
System.String
|
Spans
Location of the table caption 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>
|