GdPicture.NET.14
GdPicture14 Namespace / GdPictureOCR Class / GetFormFieldValueText Method
The unique result identifier of the executed OCR process obtained by the RunOCR method.
The 0-based index of the form field pair within the specified OCR result. It must be a value between 0 and GetFormFieldCount(OCRResultID) - 1.





In This Topic
GetFormFieldValueText Method (GdPictureOCR)
In This Topic
Returns the text of the key of a specified form field.
Syntax
'Declaration
 
Public Function GetFormFieldValueText( _
   ByVal OCRResultID As String, _
   ByVal FieldIdx As Integer _
) As String
public string GetFormFieldValueText( 
   string OCRResultID,
   int FieldIdx
)
public function GetFormFieldValueText( 
    OCRResultID: String;
    FieldIdx: Integer
): String; 
public function GetFormFieldValueText( 
   OCRResultID : String,
   FieldIdx : int
) : String;
public: string* GetFormFieldValueText( 
   string* OCRResultID,
   int FieldIdx
) 
public:
String^ GetFormFieldValueText( 
   String^ OCRResultID,
   int FieldIdx
) 

Parameters

OCRResultID
The unique result identifier of the executed OCR process obtained by the RunOCR method.
FieldIdx
The 0-based index of the form field pair within the specified OCR result. It must be a value between 0 and GetFormFieldCount(OCRResultID) - 1.

Return Value

The field text.
Remarks

This method requires the KVP and Table Processing - Intelligent Redaction component to run.

See Also