'Declaration
Public Property CharacterBlackList As String
public string CharacterBlackList {get; set;}
public read-write property CharacterBlackList: String;
public function get,set CharacterBlackList : String
For example, if you want to disable/not recognize the characters "0X@", set this parameter to "0X@".
'Declaration
Public Property CharacterBlackList As String
public string CharacterBlackList {get; set;}
public read-write property CharacterBlackList: String;
public function get,set CharacterBlackList : String
Using gdpictureOCR As GdPictureOCR = New GdPictureOCR() gdpictureOCR.CharacterBlackList = "1234" 'You can do your another stuff with gdpictureOCR here. End Using
using (GdPictureOCR gdpictureOCR = new GdPictureOCR()) { gdpictureOCR.CharacterBlackList = "1234"; //You can do your another stuff with gdpictureOCR here. }