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  As Integer, _
   ByVal Candidate As Integer _
) As String
             
        
            
            public string MICRGetSymbolValue( 
   int ,
   int Candidate
)
             
        
            
            public function MICRGetSymbolValue( 
    : Integer;
    Candidate: Integer
): String; 
             
        
            
            public function MICRGetSymbolValue( 
    : int,
   Candidate : int
) : String;
             
        
            
            public: string* MICRGetSymbolValue( 
   int ,
   int Candidate
) 
             
        
            
            public:
String^ MICRGetSymbolValue( 
   int ,
   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.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also