Class FormTable
Represents a table recognized from the input document.
Inheritance
System.Object
FormTable
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.AI.FormRecognizer.dll
Syntax
public class FormTable
Properties
BoundingBox
Bounding box of the table.
Declaration
public Azure.AI.FormRecognizer.Models.FieldBoundingBox BoundingBox { get; }
Property Value
FieldBoundingBox
|
Remarks
This property only has value for V2_1 and up.
Cells
A list of cells contained in this table.
Declaration
public System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.Models.FormTableCell> Cells { get; }
Property Value
System.Collections.Generic.IReadOnlyList<FormTableCell>
|
ColumnCount
The number of columns in this table.
Declaration
public int ColumnCount { get; }
Property Value
System.Int32
|
PageNumber
The 1-based number of the page in which this table is present.
Declaration
public int PageNumber { get; }
Property Value
System.Int32
|
RowCount
The number of rows in this table.
Declaration
public int RowCount { get; }
Property Value
System.Int32
|