Class FormTable
java.lang.Object
com.azure.ai.formrecognizer.models.FormTable
Represents a table recognized from the input document.
-
Constructor Summary
ConstructorsConstructorDescriptionFormTable(int rowCount, int columnCount, List<FormTableCell> cells, int pageNumber) Constructs a FormTable object. -
Method Summary
Modifier and TypeMethodDescriptionGet the bounding box information for the the form table.getCells()Get the list of cells contained in the table.intGet the number of columns in the table.intGet the 1-based page number in the input document.intGet the number of rows in the table.
-
Constructor Details
-
FormTable
Constructs a FormTable object.- Parameters:
rowCount- the number of rows in the table.columnCount- the number of columns in the table.cells- the list of cells contained in the table.pageNumber- the 1-based page number in the input document.
-
-
Method Details
-
getRowCount
public int getRowCount()Get the number of rows in the table.- Returns:
- the number of rows in the table.
-
getColumnCount
public int getColumnCount()Get the number of columns in the table.- Returns:
- the number of columns in the table.
-
getCells
Get the list of cells contained in the table.- Returns:
- the unmodifiable list of cells in the table.
-
getPageNumber
public int getPageNumber()Get the 1-based page number in the input document.- Returns:
- the 1-based page number in the input document.
-
getBoundingBox
Get the bounding box information for the the form table.- Returns:
- the bounding box information for the the form table.
-