Accusoft.BarcodeXpressSdk Namespace > BarcodeXpress Class : Debug Property |
'Declaration <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> <BrowsableAttribute(False)> Public Property Debug As Boolean
'Usage Dim instance As BarcodeXpress Dim value As Boolean instance.Debug = value value = instance.Debug
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Browsable(false)] public bool Debug {get; set;}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Browsable(false)] public: __property bool get_Debug(); public: __property void set_Debug( bool value );
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] [Browsable(false)] public: property bool Debug { bool get(); void set ( bool value); }
This method allows you to turn the debug log file on or off without changing any of the other debug settings. When this value is true , the component will write items to the debug log file, as specified by the DebugLogFile.
The default value is false.
... // Set Debug to true for logging to be performed bcXpress.Debug = true; ...