FormRecognizerModelFactory.FormTable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the FormTable class.
public static Azure.AI.FormRecognizer.Models.FormTable FormTable(int pageNumber, int columnCount, int rowCount, System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.Models.FormTableCell> cells, Azure.AI.FormRecognizer.Models.FieldBoundingBox boundingBox);
static member FormTable : int * int * int * System.Collections.Generic.IReadOnlyList<Azure.AI.FormRecognizer.Models.FormTableCell> * Azure.AI.FormRecognizer.Models.FieldBoundingBox -> Azure.AI.FormRecognizer.Models.FormTable
Public Shared Function FormTable (pageNumber As Integer, columnCount As Integer, rowCount As Integer, cells As IReadOnlyList(Of FormTableCell), boundingBox As FieldBoundingBox) As FormTable
Parameters
- pageNumber
- Int32
The 1-based number of the page in which this table is present.
- columnCount
- Int32
The number of columns in this table.
- rowCount
- Int32
The number of rows in this table.
- cells
- IReadOnlyList<FormTableCell>
A list of cells contained in this table.
- boundingBox
- FieldBoundingBox
The quadrilateral bounding box that outlines the table.
Returns
A new FormTable instance for mocking.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET