Class FormField<T>
- Namespace
- AiDotNet.Document.Interfaces
- Assembly
- AiDotNet.dll
Represents an extracted form field.
public class FormField<T>
Type Parameters
TThe 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
FieldName
Gets or sets the field name/label.
public string FieldName { get; set; }
Property Value
FieldType
Gets or sets the field type (text, number, date, etc.).
public string FieldType { get; set; }
Property Value
FieldValue
Gets or sets the field value.
public string FieldValue { get; set; }