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