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