Share via


FormRecognizerModelFactory.FormTable Method

Definition

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