Share via


ExtractedToken Constructors

Definition

Overloads

ExtractedToken()

Initializes a new instance of the ExtractedToken class.

ExtractedToken(String, IList<Nullable<Double>>, Nullable<Double>)

Initializes a new instance of the ExtractedToken class.

ExtractedToken()

Initializes a new instance of the ExtractedToken class.

public ExtractedToken ();
Public Sub New ()

Applies to

ExtractedToken(String, IList<Nullable<Double>>, Nullable<Double>)

Initializes a new instance of the ExtractedToken class.

public ExtractedToken (string text = default, System.Collections.Generic.IList<double?> boundingBox = default, double? confidence = default);
new Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedToken : string * System.Collections.Generic.IList<Nullable<double>> * Nullable<double> -> Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedToken
Public Sub New (Optional text As String = Nothing, Optional boundingBox As IList(Of Nullable(Of Double)) = Nothing, Optional confidence As Nullable(Of Double) = Nothing)

Parameters

text
String

String value of the extracted text.

boundingBox
IList<Nullable<Double>>

Bounding box of the extracted text. Represents the location of the extracted text as a pair of cartesian co-ordinates. The co-ordinate pairs are arranged by top-left, top-right, bottom-right and bottom-left endpoints box with origin reference from the bottom-left of the page.

confidence
Nullable<Double>

A measure of accuracy of the extracted text.

Applies to