'Declaration
Public Function GetKeyValuePairValueString( _ ByVal OCRResultID As String, _ ByVal PairIdx As Integer _ ) As String
public string GetKeyValuePairValueString( string OCRResultID, int PairIdx )
public function GetKeyValuePairValueString( OCRResultID: String; PairIdx: Integer ): String;
public function GetKeyValuePairValueString( OCRResultID : String, PairIdx : int ) : String;
public: string* GetKeyValuePairValueString( string* OCRResultID, int PairIdx )
public: String^ GetKeyValuePairValueString( String^ OCRResultID, int PairIdx )
Parameters
- OCRResultID
- The unique result identifier of the executed OCR process obtained by the RunOCR method.
- PairIdx
- The 0-based index of the key-value pair within the specified OCR result. It must be a value between 0 and GetKeyValuePairCount(OCRResultID) - 1.
Return Value
The string representation of the value.