'Declaration
Public Property RejectionCharacter As Char
'Usage
Dim instance As Reader Dim value As Char instance.RejectionCharacter = value value = instance.RejectionCharacter
public char RejectionCharacter {get; set;}
'Declaration
Public Property RejectionCharacter As Char
'Usage
Dim instance As Reader Dim value As Char instance.RejectionCharacter = value value = instance.RejectionCharacter
public char RejectionCharacter {get; set;}
Exception | Description |
---|---|
System.ArgumentOutOfRangeException | The value is 0 (null character). |
Valid range: Any character except the null character. The rejection character does not need to be in the valid set of recognizable characters.
Default value: '~'
This property controls which character is used in the output text when recognition can not determine a value. The rejection character is used whenever the confidence for a character is below the MinimumCharacterConfidence property.
Confidence will be 0 when (and only when) the rejection character is used, since it is not an actually recognized character.