Table of Contents

Class FormField<T>

Namespace
AiDotNet.Document.Interfaces
Assembly
AiDotNet.dll

Represents an extracted form field.

public class FormField<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
FormField<T>
Inherited Members

Properties

BoundingBox

Gets or sets the bounding box [x1, y1, x2, y2].

public Vector<T> BoundingBox { get; set; }

Property Value

Vector<T>

Confidence

Gets or sets the confidence score as generic type.

public T Confidence { get; set; }

Property Value

T

ConfidenceValue

Gets or sets the confidence score as double.

public double ConfidenceValue { get; set; }

Property Value

double

FieldName

Gets or sets the field name/label.

public string FieldName { get; set; }

Property Value

string

FieldType

Gets or sets the field type (text, number, date, etc.).

public string FieldType { get; set; }

Property Value

string

FieldValue

Gets or sets the field value.

public string FieldValue { get; set; }

Property Value

string