'Declaration
Public Property EnableSkewDetection As Boolean
public bool EnableSkewDetection {get; set;}
public read-write property EnableSkewDetection: Boolean;
public function get,set EnableSkewDetection : boolean
'Declaration
Public Property EnableSkewDetection As Boolean
public bool EnableSkewDetection {get; set;}
public read-write property EnableSkewDetection: Boolean;
public function get,set EnableSkewDetection : boolean
Using gdpictureOCR As GdPictureOCR = New GdPictureOCR() gdpictureOCR.EnableSkewDetection = True 'You can do your another stuff with gdpictureOCR here. End Using
using (GdPictureOCR gdpictureOCR = new GdPictureOCR()) { gdpictureOCR.EnableSkewDetection = true; //You can do your another stuff with gdpictureOCR here. }