Class DocumentTableCell
An object representing the location and content of a table cell.
Inheritance
System.Object
DocumentTableCell
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class DocumentTableCell
Properties
BoundingRegions
Bounding regions covering the table cell.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.DocumentAnalysis.BoundingRegion> BoundingRegions { get; }
Property Value
System.Collections.Generic.IReadOnlyList<BoundingRegion>
|
ColumnIndex
Column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
ColumnSpan
Number of columns spanned by this cell.
Declaration
public int ColumnSpan { get; }
Property Value
System.Int32
|
Content
Concatenated content of the table cell in reading order.
Declaration
public string Content { get; }
Property Value
System.String
|
Kind
Table cell kind.
Declaration
public Azure.AI.FormRecognizer.DocumentAnalysis.DocumentTableCellKind Kind { get; }
Property Value
DocumentTableCellKind
|
RowIndex
Row index of the cell.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
|
RowSpan
Number of rows spanned by this cell.
Declaration
public int RowSpan { get; }
Property Value
System.Int32
|
Spans
Location of the table cell 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>
|