Set debug mode on or off. If debug mode is on, common user errors will be written to the report rather than throwing an exception.
            
            
            
Syntax
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As Report
Dim value As Boolean
 
instance.DebugMode = value
 
value = instance.DebugMode  | 
 
| C# |   | 
|---|
[Obsolete("Use TrackErrors instead.")]
public bool DebugMode {get; set;} | 
 
| Managed Extensions for C++ |   | 
|---|
[Obsolete("Use TrackErrors instead.")]
public: __property bool get_DebugMode();
public: __property void set_DebugMode( 
   bool value
); | 
 
| C++/CLI |   | 
|---|
[Obsolete("Use TrackErrors instead.")]
public:
property bool DebugMode {
   bool get();
   void set (    bool value);
} | 
 
            
            
             
            
			
			
            
            
            
            
            
            Requirements
Platforms: Windows 10, Windows NT, Windows Server
            
            
See Also