Class DocumentTable
A table object consisting table cells arranged in a rectangular layout.
Inheritance
System.Object
DocumentTable
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentTable
Properties
BoundingRegions
Bounding regions covering the table.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.BoundingRegion> BoundingRegions { get; }
Property Value
System.Collections.Generic.IReadOnlyList<BoundingRegion>
|
Caption
Caption associated with the table.
Declaration
[System.ComponentModel.EditorBrowsable]
public Azure.AI.FormRecognizer.DocumentAnalysis.DocumentCaption Caption { get; }
Property Value
DocumentCaption
|
Cells
Cells contained within the table.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentTableCell> Cells { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentTableCell>
|
ColumnCount
Number of columns in the table.
Declaration
public int ColumnCount { get; }
Property Value
System.Int32
|
Footnotes
Footnotes associated with the table.
Declaration
[System.ComponentModel.EditorBrowsable]
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.DocumentFootnote> Footnotes { get; }
Property Value
System.Collections.Generic.IReadOnlyList<DocumentFootnote>
|
RowCount
Number of rows in the table.
Declaration
public int RowCount { get; }
Property Value
System.Int32
|
Spans
Location of the table 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>
|