'Declaration
Public Property SilentMode As Boolean
public bool SilentMode {get; set;}
public read-write property SilentMode: Boolean;
public function get,set SilentMode : boolean
Turning this property to false enables error reporting through MessageBox dialogues. If this property is set to true, possible errors are not reported.
'Declaration
Public Property SilentMode As Boolean
public bool SilentMode {get; set;}
public read-write property SilentMode: Boolean;
public function get,set SilentMode : boolean
'We assume that the GdViewer1 control has been properly integrated. 'Enabling error reporting through built-in MessageBox dialogues. GdViewer1.SilentMode = False
//We assume that the GdViewer1 control has been properly integrated. //Enabling error reporting through built-in MessageBox dialogues. GdViewer1.SilentMode = false;