Share via


ExtractedPage Constructors

Definition

Overloads

ExtractedPage()

Initializes a new instance of the ExtractedPage class.

ExtractedPage(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<ExtractedKeyValuePair>, IList<ExtractedTable>)

Initializes a new instance of the ExtractedPage class.

ExtractedPage()

Initializes a new instance of the ExtractedPage class.

public ExtractedPage ();
Public Sub New ()

Applies to

ExtractedPage(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<ExtractedKeyValuePair>, IList<ExtractedTable>)

Initializes a new instance of the ExtractedPage class.

public ExtractedPage (int? number = default, int? height = default, int? width = default, int? clusterId = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedKeyValuePair> keyValuePairs = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedTable> tables = default);
new Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedPage : Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedKeyValuePair> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedTable> -> Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedPage
Public Sub New (Optional number As Nullable(Of Integer) = Nothing, Optional height As Nullable(Of Integer) = Nothing, Optional width As Nullable(Of Integer) = Nothing, Optional clusterId As Nullable(Of Integer) = Nothing, Optional keyValuePairs As IList(Of ExtractedKeyValuePair) = Nothing, Optional tables As IList(Of ExtractedTable) = Nothing)

Parameters

number
Nullable<Int32>

Page number.

height
Nullable<Int32>

Height of the page (in pixels).

width
Nullable<Int32>

Width of the page (in pixels).

clusterId
Nullable<Int32>

Cluster identifier.

keyValuePairs
IList<ExtractedKeyValuePair>

List of Key-Value pairs extracted from the page.

tables
IList<ExtractedTable>

List of Tables and their information extracted from the page.

Applies to