Sdílet prostřednictvím


FormField<T> Class

Definition

Represents a field recognized in the input form, where the field's value is of a known type.

public class FormField<T>
type FormField<'T> = class
Public Class FormField(Of T)

Type Parameters

T

The type of the value in the field this instance represents.

Inheritance
FormField<T>

Constructors

FormField<T>(FormField, T)

Initializes a new instance of the FormField<T> class which represents a field recognized in the input form, where the field's value is of a known type.

Properties

Confidence

Measures the degree of certainty of the recognition result. Value is between [0.0, 1.0].

LabelData

Contains the text, bounding box and content of the label of the field in the form.

Name

Canonical name; uniquely identifies a field within the form.

Value

The strongly-typed value of this FormField<T>.

ValueData

Contains the text, bounding box and content of the value of the field in the form.

Operators

Implicit(FormField<T> to T)

Implicitly converts a FormField<T> instance into a T, using the value returned by Value.

Applies to