The symbol index between 1 and the number of recognized symbols returned by the MICRGetSymbolsCount() method.
The recognized candidate (1 or 2). 1 for the symbol with the best accuracy or 2 for the one with the next-lower level.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / MICRGetSymbolValue Method

MICRGetSymbolValue Method (GdPictureImaging)

In This Topic
Returns the character representation of one of the symbols recognized during the last MICR process done by the MICRDoMICR() method.
Syntax
'Declaration
 
Public Function MICRGetSymbolValue( _
   ByVal SymbolNo As Integer, _
   ByVal Candidate As Integer _
) As String
public string MICRGetSymbolValue( 
   int SymbolNo,
   int Candidate
)
public function MICRGetSymbolValue( 
    SymbolNo: Integer;
    Candidate: Integer
): String; 
public function MICRGetSymbolValue( 
   SymbolNo : int,
   Candidate : int
) : String;
public: string* MICRGetSymbolValue( 
   int SymbolNo,
   int Candidate
) 
public:
String^ MICRGetSymbolValue( 
   int SymbolNo,
   int Candidate
) 

Parameters

SymbolNo
The symbol index between 1 and the number of recognized symbols returned by the MICRGetSymbolsCount() method.
Candidate
The recognized candidate (1 or 2). 1 for the symbol with the best accuracy or 2 for the one with the next-lower level.

Return Value

The symbol representation. Can be a member of "0123456789/<#>^ABCDEFGHIJKLMNOPQRSTUVWXYZ" for CMC7 symbols or "0123456789ABCD" for E-13B.
Remarks

This method is used in the "MICR" Demo.

Use the GetStat() method to determine if this method succeeded.

See Also