'DeclarationPublic Property CharacterSet As String
public string CharacterSet {get; set;}
public read-write property CharacterSet: String; public function get,set CharacterSet : StringFor example, if you want to recognize only numeric characters, set this parameter to "0123456789". If you want to recognize only uppercase letters, set it to "ABCDEFGHIJKLMNOPQRSTUVWXYZ". Set this parameter to the empty string to recognize all characters.
'DeclarationPublic Property CharacterSet As String
public string CharacterSet {get; set;}
public read-write property CharacterSet: String; public function get,set CharacterSet : StringUsing gdpictureOCR As GdPictureOCR = New GdPictureOCR() gdpictureOCR.CharacterSet = "0123456789" 'You can do your another stuff with gdpictureOCR here. End Using
using (GdPictureOCR gdpictureOCR = new GdPictureOCR()) { gdpictureOCR.CharacterSet = "0123456789"; //You can do your another stuff with gdpictureOCR here. }