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