Class FormTableCell
Represents a cell contained in a table recognized from the input document.
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class FormTableCell : Azure.AI.FormRecognizer.Models.FormElement
Properties
ColumnIndex
The column index of the cell.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
|
ColumnSpan
The number of columns spanned by this cell.
Declaration
public int ColumnSpan { get; }
Property Value
System.Int32
|
Confidence
Measures the degree of certainty of the recognition result. Value is between [0.0, 1.0].
Declaration
public float Confidence { get; }
Property Value
System.Single
|
FieldElements
When 'IncludeFieldElements' is set to true
, a list of references to
the field elements constituting this cell is returned. An empty list otherwise. For calls to Recognize Content, this
list is always populated.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.Models.FormElement> FieldElements { get; }
Property Value
System.Collections.Generic.IReadOnlyList<FormElement>
|
IsFooter
IsHeader
true
if this cell is a header cell. Otherwise, false
.
Declaration
public bool IsHeader { get; }
Property Value
System.Boolean
|
RowIndex
The row index of this cell.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
|
RowSpan
The number of rows spanned by this cell.
Declaration
public int RowSpan { get; }
Property Value
System.Int32
|