'Declaration
Public Property MinCharWidth As Integer
public int MinCharWidth {get; set;}
public read-write property MinCharWidth: Integer;
public function get,set MinCharWidth : int
'Declaration
Public Property MinCharWidth As Integer
public int MinCharWidth {get; set;}
public read-write property MinCharWidth: Integer;
public function get,set MinCharWidth : int
Using gdpictureOCR As GdPictureOCR = New GdPictureOCR() gdpictureOCR.MinCharWidth = 5 'You can do your another stuff with gdpictureOCR here. End Using
using (GdPictureOCR gdpictureOCR = new GdPictureOCR()) { gdpictureOCR.MinCharWidth = 5; //You can do your another stuff with gdpictureOCR here. }