| Visual Basic (Declaration) | |
|---|---|
<BrowsableAttribute(True)> Public Property Debug As Boolean | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
[BrowsableAttribute(true)] public bool Debug {get; set;} | |
| Managed Extensions for C++ | |
|---|---|
[BrowsableAttribute(true)] public: __property bool get_Debug(); public: __property void set_Debug( bool value ); | |
| C++/CLI | |
|---|---|
[BrowsableAttribute(true)] public: property bool Debug { bool get(); void set (boolvalue); } | |
The default value is false.
This property allows you to turn the debug log file on or off without changing any of the other debug settings. When this is true, the toolkit will write items to the debug log file, as specified by the DebugLogFile and ErrorLevel properties.
