FormTable Class
- java.
lang. Object - com.
azure. ai. formrecognizer. models. FormTable
- com.
public final class FormTable
Represents a table recognized from the input document.
Constructor Summary
Constructor | Description |
---|---|
FormTable(int rowCount, int columnCount, List<FormTableCell> cells, int pageNumber) |
Constructs a Form |
Method Summary
Modifier and Type | Method and Description |
---|---|
Field |
getBoundingBox()
Get the bounding box information for the the form table. |
List<Form |
getCells()
Get the list of cells contained in the table. |
int |
getColumnCount()
Get the number of columns in the table. |
int |
getPageNumber()
Get the 1-based page number in the input document. |
int |
getRowCount()
Get the number of rows in the table. |
Methods inherited from java.lang.Object
Constructor Details
FormTable
public FormTable(int rowCount, int columnCount, List
Constructs a FormTable object.
Parameters:
Method Details
getBoundingBox
public FieldBoundingBox getBoundingBox()
Get the bounding box information for the the form table.
Returns:
getCells
public List
Get the list of cells contained in the table.
Returns:
getColumnCount
public int getColumnCount()
Get the number of columns in the table.
Returns:
getPageNumber
public int getPageNumber()
Get the 1-based page number in the input document.
Returns:
getRowCount
public int getRowCount()
Get the number of rows in the table.
Returns:
Applies to
Azure SDK for Java