Udostępnij za pośrednictwem


ExtractedTableColumn Constructors

Definition

Overloads

ExtractedTableColumn()

Initializes a new instance of the ExtractedTableColumn class.

ExtractedTableColumn(IList<ExtractedToken>, IList<IList<ExtractedToken>>)

Initializes a new instance of the ExtractedTableColumn class.

ExtractedTableColumn()

Initializes a new instance of the ExtractedTableColumn class.

public ExtractedTableColumn ();
Public Sub New ()

Applies to

ExtractedTableColumn(IList<ExtractedToken>, IList<IList<ExtractedToken>>)

Initializes a new instance of the ExtractedTableColumn class.

public ExtractedTableColumn (System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedToken> header = default, System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedToken>> entries = default);
new Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedTableColumn : System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedToken> * System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedToken>> -> Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedTableColumn
Public Sub New (Optional header As IList(Of ExtractedToken) = Nothing, Optional entries As IList(Of IList(Of ExtractedToken)) = Nothing)

Parameters

header
IList<ExtractedToken>

List of extracted tokens for the column header.

entries
IList<IList<ExtractedToken>>

Extracted text for each cell of a column. Each cell in the column can have a list of one or more tokens.

Applies to